public static class ReflectedTableModel.ColumnInfo
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
columnName_ |
private java.lang.String |
propertyName_ |
| Constructor and Description |
|---|
ColumnInfo(java.lang.String name)
Create a new ColumnInfo where the column name and property name are the same.
|
ColumnInfo(java.lang.String columnName,
java.lang.String propertyName)
Create a new ColumnInfo with the specified column name and property name.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getColumnName()
Return the column name.
|
java.lang.String |
getPropertyName()
Return the property name
|
private final java.lang.String columnName_
private final java.lang.String propertyName_
public ColumnInfo(java.lang.String columnName,
java.lang.String propertyName)
columnName - The name used by the tablepropertyName - The name of the property that we will get the data from.public ColumnInfo(java.lang.String name)
name - The name.