Class AbstractGridPlacement
- java.lang.Object
-
- org.teamapps.ux.component.grid.layout.AbstractGridPlacement
-
- All Implemented Interfaces:
GridPlacement
- Direct Known Subclasses:
ComponentGridPlacement,FloatingComponentGridPlacement
public abstract class AbstractGridPlacement extends java.lang.Object implements GridPlacement
-
-
Constructor Summary
Constructors Constructor Description AbstractGridPlacement()AbstractGridPlacement(int row, int column)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetColSpan()intgetColumn()HorizontalElementAlignmentgetHorizontalAlignment()intgetMaxHeight()intgetMaxWidth()intgetMinHeight()intgetMinWidth()intgetRow()intgetRowSpan()VerticalElementAlignmentgetVerticalAlignment()protected voidmapAbstractGridPlacementUiProperties(org.teamapps.dto.UiGridPlacement uiPlacement)voidsetColSpan(int colSpan)voidsetColumn(int column)voidsetHorizontalAlignment(HorizontalElementAlignment horizontalAlignment)voidsetMaxHeight(int maxHeight)voidsetMaxWidth(int maxWidth)voidsetMinHeight(int minHeight)voidsetMinWidth(int minWidth)voidsetRow(int row)voidsetRowSpan(int rowSpan)voidsetVerticalAlignment(VerticalElementAlignment verticalAlignment)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.teamapps.ux.component.grid.layout.GridPlacement
createUiGridPlacement, getComponents
-
-
-
-
Method Detail
-
mapAbstractGridPlacementUiProperties
protected void mapAbstractGridPlacementUiProperties(org.teamapps.dto.UiGridPlacement uiPlacement)
-
getRow
public int getRow()
- Specified by:
getRowin interfaceGridPlacement
-
setRow
public void setRow(int row)
-
getColumn
public int getColumn()
- Specified by:
getColumnin interfaceGridPlacement
-
setColumn
public void setColumn(int column)
-
getRowSpan
public int getRowSpan()
- Specified by:
getRowSpanin interfaceGridPlacement
-
setRowSpan
public void setRowSpan(int rowSpan)
-
getColSpan
public int getColSpan()
- Specified by:
getColSpanin interfaceGridPlacement
-
setColSpan
public void setColSpan(int colSpan)
-
getMinWidth
public int getMinWidth()
- Specified by:
getMinWidthin interfaceGridPlacement
-
setMinWidth
public void setMinWidth(int minWidth)
-
getMaxWidth
public int getMaxWidth()
- Specified by:
getMaxWidthin interfaceGridPlacement
-
setMaxWidth
public void setMaxWidth(int maxWidth)
-
getMinHeight
public int getMinHeight()
- Specified by:
getMinHeightin interfaceGridPlacement
-
setMinHeight
public void setMinHeight(int minHeight)
-
getMaxHeight
public int getMaxHeight()
- Specified by:
getMaxHeightin interfaceGridPlacement
-
setMaxHeight
public void setMaxHeight(int maxHeight)
-
getVerticalAlignment
public VerticalElementAlignment getVerticalAlignment()
- Specified by:
getVerticalAlignmentin interfaceGridPlacement
-
setVerticalAlignment
public void setVerticalAlignment(VerticalElementAlignment verticalAlignment)
-
getHorizontalAlignment
public HorizontalElementAlignment getHorizontalAlignment()
- Specified by:
getHorizontalAlignmentin interfaceGridPlacement
-
setHorizontalAlignment
public void setHorizontalAlignment(HorizontalElementAlignment horizontalAlignment)
-
-