- java.lang.Object
-
- org.tentackle.fx.table.DefaultTableCellTypeFactory
-
- All Implemented Interfaces:
TableCellTypeFactory
@Service(TableCellTypeFactory.class) public class DefaultTableCellTypeFactory extends java.lang.Object implements TableCellTypeFactory
The default GUI provider factory.- Author:
- harald
-
-
Constructor Summary
Constructors Constructor Description DefaultTableCellTypeFactory()Creates the factory.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> TableCellType<T>getTableCellType(java.lang.Class<T> itemClass)Gets the table cell type implementation for item class.
-
-
-
Method Detail
-
getTableCellType
public <T> TableCellType<T> getTableCellType(java.lang.Class<T> itemClass)
Description copied from interface:TableCellTypeFactoryGets the table cell type implementation for item class.- Specified by:
getTableCellTypein interfaceTableCellTypeFactory- Type Parameters:
T- the item class- Parameters:
itemClass- the class- Returns:
- the table cell type
-
-