Package org.faktorips.runtime
Interface ITable<R>
-
- Type Parameters:
R- the class representing a row of this table
- All Known Implementing Classes:
Table
public interface ITable<R>Base interface for table contents
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringTAG_NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<R>getAllRows()Returns all rows of this table.java.lang.StringgetName()Returns the qualified name of this table.
-
-
-
Field Detail
-
TAG_NAME
static final java.lang.String TAG_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the qualified name of this table.
-
getAllRows
java.util.List<R> getAllRows()
Returns all rows of this table.
-
-