Package com.saperion.ngc.resultset
Interface ResultSetMode
-
- All Known Implementing Classes:
AbstractResultSetMode
,ComplexResultSetMode
,LookupResultSetMode
,SimpleResultSetMode
public interface ResultSetMode
Interface 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 void
createListhead(org.zkoss.zul.Listhead head)
Creates the listhead containing all headers.DraggableListItem
createListitem(ResultProperties properties)
Creates a listitem.boolean
isForLookupTables()
-
-
-
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
-
-