planetj.dataengine.display
Class RowAction
java.lang.Object
|
+--planetj.dataengine.display.AbstractAction
|
+--planetj.dataengine.display.RowAction
- All Implemented Interfaces:
- IRowAction
- public abstract class RowAction
- extends AbstractAction
- implements IRowAction
A RowAction is an action that is to be performed on a given Row.
Fields inherited from interface planetj.dataengine.display.IRowAction |
TYPE |
RowAction
public RowAction()
getType
public String getType()
- All subclasses are of the RowAction's type
- Overrides:
getType
in class AbstractAction
handleAction
public Object handleAction(Object o)
- Ensure given object to perform action on is a Row.
- Specified by:
handleAction
in class AbstractAction
- Parameters:
o
- Object to perform the action on
handleRowAction
public abstract Object handleRowAction(Row row)
- Subclasses need to provide logic to handle the action
they wish to perform.
- Parameters:
row
- Row to perform action on