BrightSide Workbench Full Report + Source Code
org.turro.zkoss.filter.FilterFieldListbox Class Reference
Inheritance diagram for org.turro.zkoss.filter.FilterFieldListbox:
Collaboration diagram for org.turro.zkoss.filter.FilterFieldListbox:

Public Member Functions

 FilterFieldListbox (List< FilterField > fields)
 
- 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)
 

Protected Member Functions

void populateList ()
 
- Protected Member Functions inherited from org.turro.zkoss.input.GenericListbox< V >
boolean equals (V value, V obj)
 

Additional Inherited Members

- 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 29 of file FilterFieldListbox.java.

Constructor & Destructor Documentation

◆ FilterFieldListbox()

org.turro.zkoss.filter.FilterFieldListbox.FilterFieldListbox ( List< FilterField fields)

Definition at line 33 of file FilterFieldListbox.java.

33  {
34  this.fields = fields;
35  }

Member Function Documentation

◆ populateList()

void org.turro.zkoss.filter.FilterFieldListbox.populateList ( )
protected

Reimplemented from org.turro.zkoss.input.GenericListbox< V >.

Definition at line 38 of file FilterFieldListbox.java.

38  {
39  for(FilterField ff : fields) {
40  if(!ff.isFixed()) {
41  appendChild(new Listitem(I_.get(ff.label), ff));
42  }
43  }
44  }
Here is the call graph for this function:

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