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
Modifier and TypeMethodDescriptionvoid
createListhead
(org.zkoss.zul.Listhead head) Creates the listhead containing all headers.createListitem
(ResultProperties properties) Creates a listitem.boolean
-
Method Details
-
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
-