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

Public Member Functions

 FieldValueCombobox (FieldDef fieldDef)
 
String getFieldValue ()
 
void setFieldValue (String fieldValue)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 27 of file FieldValueCombobox.java.

Constructor & Destructor Documentation

◆ FieldValueCombobox()

org.turro.contacts.zul.contact.FieldValueCombobox.FieldValueCombobox ( FieldDef  fieldDef)

Definition at line 31 of file FieldValueCombobox.java.

31  {
32  createModel(fieldDef);
33  }

Member Function Documentation

◆ getFieldValue()

String org.turro.contacts.zul.contact.FieldValueCombobox.getFieldValue ( )

Definition at line 35 of file FieldValueCombobox.java.

35  {
36  fieldValue = getText();
37  return fieldValue;
38  }
Here is the caller graph for this function:

◆ setFieldValue()

void org.turro.contacts.zul.contact.FieldValueCombobox.setFieldValue ( String  fieldValue)

Definition at line 40 of file FieldValueCombobox.java.

40  {
41  this.fieldValue = fieldValue;
42  if(fieldValue != null) {
43  setText(fieldValue);
44  } else {
45  setText("");
46  }
47  }
Here is the caller graph for this function:

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