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

Public Member Functions

 BloggerCategoriesListbox ()
 
 BloggerCategoriesListbox (IContact contact)
 
String convertToString (PublicationCategory v)
 
boolean getChecked (PublicationCategory v)
 
void setChecked (PublicationCategory 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 BloggerCategoriesListbox.java.

Constructor & Destructor Documentation

◆ BloggerCategoriesListbox() [1/2]

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

Definition at line 33 of file BloggerCategoriesListbox.java.

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

◆ BloggerCategoriesListbox() [2/2]

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

Definition at line 37 of file BloggerCategoriesListbox.java.

37  {
38  super(new PublicationPU(),
39  "select distinct pb.publicationCategory from PublicationBlogger pb " +
40  "where pb.idContact = '" + contact.getId() + "'",
41  false, false);
42  }
Here is the call graph for this function:

Member Function Documentation

◆ convertToString()

String org.turro.publication.zul.ctrl.BloggerCategoriesListbox.convertToString ( PublicationCategory  v)

Definition at line 45 of file BloggerCategoriesListbox.java.

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

◆ getChecked()

boolean org.turro.publication.zul.ctrl.BloggerCategoriesListbox.getChecked ( PublicationCategory  v)

Definition at line 50 of file BloggerCategoriesListbox.java.

50  {
51  return false;
52  }

◆ setChecked()

void org.turro.publication.zul.ctrl.BloggerCategoriesListbox.setChecked ( PublicationCategory  v,
boolean  checked 
)

Definition at line 55 of file BloggerCategoriesListbox.java.

55  {
56  // nothing to do
57  }

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