Package com.gargoylesoftware.base.gui
Class TableLayout.HeaderPermanentInfo
- java.lang.Object
-
- com.gargoylesoftware.base.gui.TableLayout.HeaderPermanentInfo
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- TableLayout
private class TableLayout.HeaderPermanentInfo extends java.lang.Object implements java.io.Serializable
Contains the information that the user has specified for the specific row or column.
-
-
Field Summary
Fields Modifier and Type Field Description private int
index_
private boolean
isExpandable_
private int
min_
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description HeaderPermanentInfo(int newIndex)
Constructor for the HeaderPermanentInfo object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIndex()
Gets the index attribute of the HeaderPermanentInfo objectint
getMin()
Gets the min attribute of the HeaderPermanentInfo objectboolean
isExpandable()
Gets the expandable attribute of the HeaderPermanentInfo objectvoid
setExpandable(boolean expandable)
Sets the expandable attribute of the HeaderPermanentInfo objectvoid
setMin(int min)
Sets the min attribute of the HeaderPermanentInfo object
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
index_
private final int index_
-
min_
private int min_
-
isExpandable_
private boolean isExpandable_
-
-
Method Detail
-
setMin
public final void setMin(int min)
Sets the min attribute of the HeaderPermanentInfo object- Parameters:
min
- The new min value
-
setExpandable
public final void setExpandable(boolean expandable)
Sets the expandable attribute of the HeaderPermanentInfo object- Parameters:
expandable
- The new expandable value
-
getMin
public final int getMin()
Gets the min attribute of the HeaderPermanentInfo object- Returns:
- The min value
-
getIndex
public final int getIndex()
Gets the index attribute of the HeaderPermanentInfo object- Returns:
- The index value
-
isExpandable
public final boolean isExpandable()
Gets the expandable attribute of the HeaderPermanentInfo object- Returns:
- The expandable value
-
-