Package org.teamapps.dto
Class AbstractUiTemplateElement
- java.lang.Object
-
- org.teamapps.dto.AbstractUiTemplateElement
-
- All Implemented Interfaces:
UiObject
- Direct Known Subclasses:
UiFloatingElement,UiGlyphIconElement,UiIconElement,UiImageElement,UiTextElement
public abstract class AbstractUiTemplateElement extends java.lang.Object implements 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.StringbackgroundColorprotected intcolSpanprotected intcolumnprotected UiHorizontalElementAlignmenthorizontalAlignmentprotected UiSpacingmarginprotected java.lang.Stringpropertyprotected introwprotected introwSpanprotected UiVerticalElementAlignmentverticalAlignment
-
Constructor Summary
Constructors Constructor Description AbstractUiTemplateElement()Deprecated.Only for Jackson deserialization.AbstractUiTemplateElement(java.lang.String property, int row, int column)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBackgroundColor()intgetColSpan()intgetColumn()UiHorizontalElementAlignmentgetHorizontalAlignment()UiSpacinggetMargin()java.lang.StringgetProperty()intgetRow()intgetRowSpan()UiVerticalElementAlignmentgetVerticalAlignment()AbstractUiTemplateElementsetBackgroundColor(java.lang.String backgroundColor)AbstractUiTemplateElementsetColSpan(int colSpan)AbstractUiTemplateElementsetHorizontalAlignment(UiHorizontalElementAlignment horizontalAlignment)AbstractUiTemplateElementsetMargin(UiSpacing margin)AbstractUiTemplateElementsetRowSpan(int rowSpan)AbstractUiTemplateElementsetVerticalAlignment(UiVerticalElementAlignment verticalAlignment)java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.teamapps.dto.UiObject
getUiObjectType
-
-
-
-
Field Detail
-
property
protected java.lang.String property
-
row
protected int row
-
column
protected int column
-
rowSpan
protected int rowSpan
-
colSpan
protected int colSpan
-
horizontalAlignment
protected UiHorizontalElementAlignment horizontalAlignment
-
verticalAlignment
protected UiVerticalElementAlignment verticalAlignment
-
margin
protected UiSpacing margin
-
backgroundColor
protected java.lang.String backgroundColor
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getProperty
public java.lang.String getProperty()
-
getRow
public int getRow()
-
getColumn
public int getColumn()
-
getRowSpan
public int getRowSpan()
-
getColSpan
public int getColSpan()
-
getHorizontalAlignment
public UiHorizontalElementAlignment getHorizontalAlignment()
-
getVerticalAlignment
public UiVerticalElementAlignment getVerticalAlignment()
-
getMargin
public UiSpacing getMargin()
-
getBackgroundColor
public java.lang.String getBackgroundColor()
-
setRowSpan
public AbstractUiTemplateElement setRowSpan(int rowSpan)
-
setColSpan
public AbstractUiTemplateElement setColSpan(int colSpan)
-
setHorizontalAlignment
public AbstractUiTemplateElement setHorizontalAlignment(UiHorizontalElementAlignment horizontalAlignment)
-
setVerticalAlignment
public AbstractUiTemplateElement setVerticalAlignment(UiVerticalElementAlignment verticalAlignment)
-
setMargin
public AbstractUiTemplateElement setMargin(UiSpacing margin)
-
setBackgroundColor
public AbstractUiTemplateElement setBackgroundColor(java.lang.String backgroundColor)
-
-