BrightSide Workbench Full Report + Source Code
org.turro.zul.log.ActionListbox Class Reference
Inheritance diagram for org.turro.zul.log.ActionListbox:
Collaboration diagram for org.turro.zul.log.ActionListbox:

Public Member Functions

void setFromDate (Date fromDate)
 
String convertToString (String v)
 
- Public Member Functions inherited from org.turro.zkoss.input.CollectionListbox< V >
 CollectionListbox ()
 
 CollectionListbox (Collection< V > collection)
 
void updateCollection ()
 
void updateCollection (Collection< V > collection)
 
boolean isAllowNull ()
 
void setAllowNull (boolean allowNull)
 
Collection< V > getCollection ()
 
void setCollection (Collection< V > collection)
 
boolean isNullAtBottom ()
 
void setNullAtBottom (boolean nullAtBottom)
 
String getNullLabel ()
 
void setNullLabel (String nullLabel)
 
- Public Member Functions inherited from org.turro.zkoss.input.GenericListbox< V >
 GenericListbox ()
 
void setDisabled (boolean value)
 
void afterCompose ()
 
void clearItems ()
 
void setObjectValue (V value)
 
void setObjectValues (Collection< V > collection)
 
getObjectValue ()
 
Collection< V > getObjectValues ()
 
Collection< V > getDeselectedObjectValues ()
 
boolean isSelectFirst ()
 
void setSelectFirst (boolean selectFirst)
 
Set getDeselectedItems ()
 
void sort ()
 
Object getRelatedEntity ()
 
void setRelatedEntity (Object relatedEntity)
 

Additional Inherited Members

- Static Public Attributes inherited from org.turro.zkoss.input.CollectionListbox< V >
static final String ITEM_SEPARATOR = "|||"
 
- Protected Member Functions inherited from org.turro.zkoss.input.CollectionListbox< V >
void populateList ()
 
boolean equals (V value, V obj)
 
abstract String convertToString (V v)
 
void beforeAppend (Listitem li)
 
- Protected Attributes inherited from org.turro.zkoss.input.GenericListbox< V >
boolean populated = false
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 30 of file ActionListbox.java.

Member Function Documentation

◆ convertToString()

String org.turro.zul.log.ActionListbox.convertToString ( String  v)

Definition at line 40 of file ActionListbox.java.

40  {
41  return v;
42  }

◆ setFromDate()

void org.turro.zul.log.ActionListbox.setFromDate ( Date  fromDate)

Definition at line 32 of file ActionListbox.java.

32  {
33  Dao dao = new ContactsPU();
34  updateCollection(dao.getResultList(
35  "select distinct l.comment from LogEntry as l where l.dateLog >= ? order by 1",
36  new Object[] { fromDate }));
37  }
Here is the call graph for this function:

The documentation for this class was generated from the following file: