/* * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license * Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template */ package com.megatim.reporting.adhoc.pojo.layouts; import com.megatim.reporting.adhoc.pojo.components.Component; import java.util.ArrayList; import java.util.List; /** * Classe utilisée pour regrouper les attributs communs aux différentes sections d'un état * @author ASUS */ public class Layout { protected int height; protected String splitType; protected List components = new ArrayList<>(); public int getHeight() { return height; } public void setHeight(int height) { this.height = height; } public String getSplitType() { return splitType; } public void setSplitType(String splitType) { this.splitType = splitType; } public List getComponents() { return components; } public void setComponents(List components) { this.components = components; } }