Package com.saperion.ngc.resultset
Interface ResultSetMode
-
- All Known Implementing Classes:
AbstractResultSetMode,ComplexResultSetMode,LookupResultSetMode,SimpleResultSetMode
public interface ResultSetModeInterface for rendering modes of the result set view. Used to create parts of the view like list header and list items.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreateListhead(org.zkoss.zul.Listhead head)Creates the listhead containing all headers.DraggableListItemcreateListitem(ResultProperties properties)Creates a listitem.booleanisForLookupTables()
-
-
-
Method Detail
-
createListhead
void createListhead(org.zkoss.zul.Listhead head)
Creates the listhead containing all headers.- Parameters:
head- List head
-
createListitem
DraggableListItem createListitem(ResultProperties properties) throws DocumentIdentificationException, NgcUiException
Creates a listitem.- Parameters:
properties- item's properties- Returns:
- listitem
- Throws:
DocumentIdentificationException- document identification failed (missing object id)NgcUiException- exception to be handled by view
-
isForLookupTables
boolean isForLookupTables()
- Returns:
- true if this render mode is for lookup tables
-
-