Package org.teamapps.dto
Class UiGridTemplate
- java.lang.Object
-
- org.teamapps.dto.UiGridTemplate
-
- All Implemented Interfaces:
UiObject,UiTemplate
public class UiGridTemplate extends java.lang.Object implements UiTemplate, UiObject
THIS IS GENERATED CODE! PLEASE DO NOT MODIFY - ALL YOUR WORK WOULD BE LOST!
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringariaLabelPropertyprotected java.lang.StringbackgroundColorprotected UiBorderborderprotected java.util.List<UiGridColumn>columnsprotected java.util.List<AbstractUiTemplateElement>elementsprotected intgridGapprotected intmaxHeightprotected intmaxWidthprotected intminHeightprotected intminWidthprotected UiSpacingpaddingprotected java.util.List<UiGridRow>rowsprotected java.lang.StringtitleProperty
-
Constructor Summary
Constructors Constructor Description UiGridTemplate()Deprecated.Only for Jackson deserialization.UiGridTemplate(java.util.List<UiGridColumn> columns, java.util.List<UiGridRow> rows, java.util.List<AbstractUiTemplateElement> elements)
-
Method Summary
-
-
-
Field Detail
-
columns
protected java.util.List<UiGridColumn> columns
-
rows
protected java.util.List<UiGridRow> rows
-
elements
protected java.util.List<AbstractUiTemplateElement> elements
-
minWidth
protected int minWidth
-
maxWidth
protected int maxWidth
-
minHeight
protected int minHeight
-
maxHeight
protected int maxHeight
-
padding
protected UiSpacing padding
-
gridGap
protected int gridGap
-
backgroundColor
protected java.lang.String backgroundColor
-
border
protected UiBorder border
-
ariaLabelProperty
protected java.lang.String ariaLabelProperty
-
titleProperty
protected java.lang.String titleProperty
-
-
Constructor Detail
-
UiGridTemplate
@Deprecated public UiGridTemplate()
Deprecated.Only for Jackson deserialization. Use the other constructor instead.
-
UiGridTemplate
public UiGridTemplate(java.util.List<UiGridColumn> columns, java.util.List<UiGridRow> rows, java.util.List<AbstractUiTemplateElement> elements)
-
-
Method Detail
-
getUiObjectType
public UiObjectType getUiObjectType()
- Specified by:
getUiObjectTypein interfaceUiObject
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getColumns
public java.util.List<UiGridColumn> getColumns()
-
getRows
public java.util.List<UiGridRow> getRows()
-
getElements
public java.util.List<AbstractUiTemplateElement> getElements()
-
getMinWidth
public int getMinWidth()
-
getMaxWidth
public int getMaxWidth()
-
getMinHeight
public int getMinHeight()
-
getMaxHeight
public int getMaxHeight()
-
getPadding
public UiSpacing getPadding()
-
getGridGap
public int getGridGap()
-
getBackgroundColor
public java.lang.String getBackgroundColor()
-
getBorder
public UiBorder getBorder()
-
getAriaLabelProperty
public java.lang.String getAriaLabelProperty()
-
getTitleProperty
public java.lang.String getTitleProperty()
-
setMinWidth
public UiGridTemplate setMinWidth(int minWidth)
-
setMaxWidth
public UiGridTemplate setMaxWidth(int maxWidth)
-
setMinHeight
public UiGridTemplate setMinHeight(int minHeight)
-
setMaxHeight
public UiGridTemplate setMaxHeight(int maxHeight)
-
setPadding
public UiGridTemplate setPadding(UiSpacing padding)
-
setGridGap
public UiGridTemplate setGridGap(int gridGap)
-
setBackgroundColor
public UiGridTemplate setBackgroundColor(java.lang.String backgroundColor)
-
setBorder
public UiGridTemplate setBorder(UiBorder border)
-
setAriaLabelProperty
public UiGridTemplate setAriaLabelProperty(java.lang.String ariaLabelProperty)
-
setTitleProperty
public UiGridTemplate setTitleProperty(java.lang.String titleProperty)
-
-