Class ColumnIdentifier<R>
- java.lang.Object
-
- org.nuiton.jaxx.application.swing.table.ColumnIdentifier<R>
-
- All Implemented Interfaces:
Serializable
public class ColumnIdentifier<R> extends Object implements Serializable
To represent a column of a table.- Since:
- 2.8
- Author:
- Tony Chemit - chemit@codelutin.com
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedColumnIdentifier(String propertyName, String headerI18nKey, String headerTipI18nKey)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetHeaderI18nKey()StringgetHeaderTipI18nKey()StringgetPropertyName()ObjectgetValue(R entry)static <R> ColumnIdentifier<R>newId(String propertyName, String headerI18nKey, String headerTipI18nKey)static <R> ColumnIdentifier<R>newReadOnlyId(String propertyName, String headerI18nKey, String headerTipI18nKey)voidsetValue(R entry, Object value)
-
-
-
Method Detail
-
newId
public static <R> ColumnIdentifier<R> newId(String propertyName, String headerI18nKey, String headerTipI18nKey)
-
newReadOnlyId
public static <R> ColumnIdentifier<R> newReadOnlyId(String propertyName, String headerI18nKey, String headerTipI18nKey)
-
getPropertyName
public String getPropertyName()
-
getHeaderI18nKey
public String getHeaderI18nKey()
-
getHeaderTipI18nKey
public String getHeaderTipI18nKey()
-
-