Package com.gargoylesoftware.base.gui
Class TableLayout.Entry
- java.lang.Object
-
- com.gargoylesoftware.base.gui.TableLayout.Entry
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- TableLayout
private class TableLayout.Entry extends java.lang.Object implements java.io.Serializable
A convenience class to attach the constraints to a component.
-
-
Field Summary
Fields Modifier and Type Field Description private java.awt.Component
component_
Description of the Fieldprivate TableLayoutConstraints
constraints_
Description of the Fieldprivate static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description Entry(java.awt.Component comp, TableLayoutConstraints constraints)
Constructor for the Entry object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.Component
getComponent()
Gets the component attribute of the Entry objectTableLayoutConstraints
getConstraints()
Gets the constraints attribute of the Entry objectjava.lang.String
toString()
Description of the Method
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
component_
private final java.awt.Component component_
Description of the Field
-
constraints_
private final TableLayoutConstraints constraints_
Description of the Field
-
-
Constructor Detail
-
Entry
public Entry(java.awt.Component comp, TableLayoutConstraints constraints)
Constructor for the Entry object- Parameters:
comp
- Description of Parameterconstraints
- Description of Parameter
-
-
Method Detail
-
getComponent
public final java.awt.Component getComponent()
Gets the component attribute of the Entry object- Returns:
- The component value
-
getConstraints
public final TableLayoutConstraints getConstraints()
Gets the constraints attribute of the Entry object- Returns:
- The constraints value
-
toString
public java.lang.String toString()
Description of the Method- Overrides:
toString
in classjava.lang.Object
- Returns:
- Description of the Returned Value
-
-