BrightSide Workbench Full Report + Source Code
org.turro.crm.zul.touch.TouchPointListbox Class Reference
Inheritance diagram for org.turro.crm.zul.touch.TouchPointListbox:
Collaboration diagram for org.turro.crm.zul.touch.TouchPointListbox:

Public Member Functions

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

Constructor & Destructor Documentation

◆ TouchPointListbox()

org.turro.crm.zul.touch.TouchPointListbox.TouchPointListbox ( )

Definition at line 31 of file TouchPointListbox.java.

31  {
32  super(new CrmPU(),
33  "select distinct touchp from TouchPoint as touchp " +
34  "where endsSale = FALSE " +
35  "order by touchp.touchDegree",
36  false, false);
37  }

Member Function Documentation

◆ convertToString()

String org.turro.crm.zul.touch.TouchPointListbox.convertToString ( TouchPoint  v)

Definition at line 40 of file TouchPointListbox.java.

40  {
41  return v.getName();
42  }
Here is the call graph for this function:

◆ getChecked()

boolean org.turro.crm.zul.touch.TouchPointListbox.getChecked ( TouchPoint  v)

Definition at line 45 of file TouchPointListbox.java.

45  {
46  return true;
47  }

◆ setChecked()

void org.turro.crm.zul.touch.TouchPointListbox.setChecked ( TouchPoint  v,
boolean  checked 
)

Definition at line 50 of file TouchPointListbox.java.

50  {
51  }

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