
com.jwebmp.plugins.jqxwidgets.layout.JQXLayoutOptions Maven / Gradle / Ivy
/*
* Copyright (C) 2017 Marc Magon
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.jwebmp.plugins.jqxwidgets.layout;
import com.jwebmp.plugins.jqxwidgets.JQXDefaultJavaScriptPart;
import java.util.ArrayList;
import java.util.List;
/**
* All the options for the tooltip library
*
*
* @author GedMarc
* @version 1.0
*
*
* @since Mar 4, 2015
*/
public class JQXLayoutOptions
extends JQXDefaultJavaScriptPart
{
private Boolean contextMenu;// Boolean false
private List layout;// Array []
private Integer minGroupHeight;// Number 100
private Integer minGroupWidth;// Number 100
private Boolean resizable;// Boolean true
private Boolean rtl;// Boolean false
public JQXLayoutOptions()
{
//Nothing Needed
}
public Boolean getContextMenu()
{
return contextMenu;
}
public void setContextMenu(Boolean contextMenu)
{
this.contextMenu = contextMenu;
}
public List getLayout()
{
if (layout == null)
{
layout = new ArrayList<>();
}
return layout;
}
public void setLayout(List layout)
{
this.layout = layout;
}
public Integer getMinGroupHeight()
{
return minGroupHeight;
}
public void setMinGroupHeight(Integer minGroupHeight)
{
this.minGroupHeight = minGroupHeight;
}
public Integer getMinGroupWidth()
{
return minGroupWidth;
}
public void setMinGroupWidth(Integer minGroupWidth)
{
this.minGroupWidth = minGroupWidth;
}
public Boolean getResizable()
{
return resizable;
}
public void setResizable(Boolean resizable)
{
this.resizable = resizable;
}
public Boolean getRtl()
{
return rtl;
}
public void setRtl(Boolean rtl)
{
this.rtl = rtl;
}
}