Package com.jgoodies.forms.layout
Class FormLayout.LayoutInfo
- java.lang.Object
-
- com.jgoodies.forms.layout.FormLayout.LayoutInfo
-
- Enclosing class:
- FormLayout
public static final class FormLayout.LayoutInfo extends java.lang.ObjectStores column and row origins.
-
-
Field Summary
Fields Modifier and Type Field Description int[]columnOriginsHolds the origins of the columns.int[]rowOriginsHolds the origins of the rows.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetHeight()Returns the layout's height, the size between the first and last row.intgetWidth()Returns the layout's width, the size between the first and the last column origin.intgetX()Returns the layout's horizontal origin, the origin of the first column.intgetY()Returns the layout's vertical origin, the origin of the first row.
-
-
-
Method Detail
-
getX
public int getX()
Returns the layout's horizontal origin, the origin of the first column.- Returns:
- the layout's horizontal origin, the origin of the first column.
-
getY
public int getY()
Returns the layout's vertical origin, the origin of the first row.- Returns:
- the layout's vertical origin, the origin of the first row.
-
getWidth
public int getWidth()
Returns the layout's width, the size between the first and the last column origin.- Returns:
- the layout's width.
-
getHeight
public int getHeight()
Returns the layout's height, the size between the first and last row.- Returns:
- the layout's height.
-
-