Package com.gargoylesoftware.base.gui
Class ReflectedTableModel.ColumnInfo
java.lang.Object
com.gargoylesoftware.base.gui.ReflectedTableModel.ColumnInfo
- Enclosing class:
ReflectedTableModel
This class contains information about one specific column in the table.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionColumnInfo
(String name) Create a new ColumnInfo where the column name and property name are the same.ColumnInfo
(String columnName, String propertyName) Create a new ColumnInfo with the specified column name and property name. -
Method Summary
Modifier and TypeMethodDescriptionReturn the column name.Return the property name
-
Field Details
-
columnName_
-
propertyName_
-
-
Constructor Details
-
ColumnInfo
Create a new ColumnInfo with the specified column name and property name.- Parameters:
columnName
- The name used by the tablepropertyName
- The name of the property that we will get the data from.
-
ColumnInfo
Create a new ColumnInfo where the column name and property name are the same.- Parameters:
name
- The name.
-
-
Method Details
-
getColumnName
Return the column name.- Returns:
- The column name.
-
getPropertyName
Return the property name- Returns:
- The property name.
-