public abstract class AlmShuttleModel
extends java.lang.Object
The AlmShuttleModel
is the interface to define the UI model for TPC shuttle tag. Connector writer can implement a customized shuttle model for the shuttle tag in the UI metaData file.
Constructor and Description |
---|
AlmShuttleModel() |
Modifier and Type | Method and Description |
---|---|
abstract java.lang.Class |
getColumnClass(RenderingContext rcontext, AlmComponent component, int col) |
abstract java.util.List<java.lang.String> |
getColumnLabels(RenderingContext rcontext, AlmComponent component) |
abstract java.util.List<Row> |
getFromData(RenderingContext rcontext, AlmComponent component) |
abstract java.util.List<Row> |
getToData(RenderingContext rcontext, AlmComponent component) |
public abstract java.util.List<java.lang.String> getColumnLabels(RenderingContext rcontext, AlmComponent component)
public abstract java.lang.Class getColumnClass(RenderingContext rcontext, AlmComponent component, int col)
public abstract java.util.List<Row> getFromData(RenderingContext rcontext, AlmComponent component)
public abstract java.util.List<Row> getToData(RenderingContext rcontext, AlmComponent component)