Package de.xima.fc.gui.common.model.data
Class DataTable<S,T>
- java.lang.Object
 - 
- de.xima.fc.gui.common.model.data.DataTable<S,T>
 
 
- 
- Type Parameters:
 S- header type, should beSerializable.T- cell type, should beSerializable.
- All Implemented Interfaces:
 Serializable
public class DataTable<S,T> extends Object implements Serializable
Simple Model holding headers and data rows of a fixed data table for outputting information- Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<S>getColumnHeaders()List<Map<S,T>>getRows()voidsetColumnHeaders(List<S> columnHeaders)voidsetRows(List<Map<S,T>> rows) 
 -