BrightSide Workbench Full Report + Source Code
org.turro.contacts.zul.contact.ConnectorListbox Class Reference
Inheritance diagram for org.turro.contacts.zul.contact.ConnectorListbox:
Collaboration diagram for org.turro.contacts.zul.contact.ConnectorListbox:

Public Member Functions

 ConnectorListbox (String connector)
 
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 28 of file ConnectorListbox.java.

Constructor & Destructor Documentation

◆ ConnectorListbox()

org.turro.contacts.zul.contact.ConnectorListbox.ConnectorListbox ( String  connector)

Definition at line 30 of file ConnectorListbox.java.

30  {
31  super(new ContactsPU(),
32  "select distinct c.value from Connector as c " +
33  "where c.description = '" + connector + "'" +
34  "order by 1",
35  false, false);
36  }

Member Function Documentation

◆ convertToString()

String org.turro.contacts.zul.contact.ConnectorListbox.convertToString ( String  v)

Definition at line 39 of file ConnectorListbox.java.

39  {
40  return v;
41  }

◆ getChecked()

boolean org.turro.contacts.zul.contact.ConnectorListbox.getChecked ( String  v)

Definition at line 44 of file ConnectorListbox.java.

44  {
45  return true;
46  }

◆ setChecked()

void org.turro.contacts.zul.contact.ConnectorListbox.setChecked ( String  v,
boolean  checked 
)

Definition at line 49 of file ConnectorListbox.java.

49  {
50 
51  }

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