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

Public Member Functions

 AuthorListbox ()
 
String convertToString (String v)
 
boolean getChecked (String v)
 
void setChecked (String 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 27 of file AuthorListbox.java.

Constructor & Destructor Documentation

◆ AuthorListbox()

org.turro.publication.zul.www.AuthorListbox.AuthorListbox ( )

Definition at line 29 of file AuthorListbox.java.

29  {
30  super(new PublicationPU(),
31  "select distinct publication.author from Publication as publication order by publication.author",
32  false, false);
33  setNullLabel("All");
34  }
void setNullLabel(String nullLabel)
Here is the call graph for this function:

Member Function Documentation

◆ convertToString()

String org.turro.publication.zul.www.AuthorListbox.convertToString ( String  v)

Definition at line 37 of file AuthorListbox.java.

37  {
38  if(v == null) return "";
39  return v;
40  }

◆ getChecked()

boolean org.turro.publication.zul.www.AuthorListbox.getChecked ( String  v)

Definition at line 43 of file AuthorListbox.java.

43  {
44  return true;
45  }

◆ setChecked()

void org.turro.publication.zul.www.AuthorListbox.setChecked ( String  v,
boolean  checked 
)

Definition at line 48 of file AuthorListbox.java.

48  {
49  }

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