BrightSide Workbench Full Report + Source Code
org.turro.publication.zul.ctrl.BloggerGroupsListbox Class Reference
Inheritance diagram for org.turro.publication.zul.ctrl.BloggerGroupsListbox:
Collaboration diagram for org.turro.publication.zul.ctrl.BloggerGroupsListbox:

Public Member Functions

 BloggerGroupsListbox ()
 
 BloggerGroupsListbox (IContact contact)
 
String convertToString (PublicationGroup v)
 
boolean getChecked (PublicationGroup v)
 
void setChecked (PublicationGroup v, boolean checked)
 
- Public Member Functions inherited from org.turro.jpa.input.JpaListbox< V >
 JpaListbox ()
 
 JpaListbox (Dao dao, String query, boolean checkmark, boolean autoSave)
 
boolean isAutoSave ()
 
void setAutoSave (boolean autoSave)
 
Dao getDao ()
 
void setDao (Dao dao)
 
String getQuery ()
 
void setQuery (String query)
 
abstract String convertToString (V v)
 
abstract boolean getChecked (V v)
 
abstract void setChecked (V v, boolean checked)
 
boolean isAllowNull ()
 
void setAllowNull (boolean allowNull)
 
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

- Protected Member Functions inherited from org.turro.jpa.input.JpaListbox< V >
void populateList ()
 
boolean equals (V value, V obj)
 
- 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 31 of file BloggerGroupsListbox.java.

Constructor & Destructor Documentation

◆ BloggerGroupsListbox() [1/2]

org.turro.publication.zul.ctrl.BloggerGroupsListbox.BloggerGroupsListbox ( )

Definition at line 33 of file BloggerGroupsListbox.java.

33  {
34  this(Authentication.getIContact());
35  }
Here is the call graph for this function:

◆ BloggerGroupsListbox() [2/2]

org.turro.publication.zul.ctrl.BloggerGroupsListbox.BloggerGroupsListbox ( IContact  contact)

Definition at line 37 of file BloggerGroupsListbox.java.

37  {
38  super(new PublicationPU(),
39  "select pg from PublicationGroup pg " +
40  "where pg.publishable = TRUE",
41  false, false);
42  }

Member Function Documentation

◆ convertToString()

String org.turro.publication.zul.ctrl.BloggerGroupsListbox.convertToString ( PublicationGroup  v)

Definition at line 45 of file BloggerGroupsListbox.java.

45  {
46  return v.getName();
47  }
Here is the call graph for this function:

◆ getChecked()

boolean org.turro.publication.zul.ctrl.BloggerGroupsListbox.getChecked ( PublicationGroup  v)

Definition at line 50 of file BloggerGroupsListbox.java.

50  {
51  return false;
52  }

◆ setChecked()

void org.turro.publication.zul.ctrl.BloggerGroupsListbox.setChecked ( PublicationGroup  v,
boolean  checked 
)

Definition at line 55 of file BloggerGroupsListbox.java.

55  {
56  // nothing to do
57  }

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