BrightSide Workbench Full Report + Source Code
org.turro.zkoss.input.GenericBandbox< V > Class Template Referenceabstract
Inheritance diagram for org.turro.zkoss.input.GenericBandbox< V >:
Collaboration diagram for org.turro.zkoss.input.GenericBandbox< V >:

Public Member Functions

Bandpopup getBandPopup ()
 
boolean isFilled ()
 
void afterCompose ()
 
abstract V getObjectValue ()
 
abstract void setObjectValue (V v)
 

Protected Member Functions

void setPopupComponent (Component component)
 
void setBandText (String text)
 
abstract void fillPopup ()
 

Protected Attributes

value
 

Detailed Description

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

Definition at line 29 of file GenericBandbox.java.

Member Function Documentation

◆ afterCompose()

void org.turro.zkoss.input.GenericBandbox< V >.afterCompose ( )

Definition at line 45 of file GenericBandbox.java.

45  {
46  bandPopup = new Bandpopup();
47  appendChild(bandPopup);
48  fillPopup();
49  filled = true;
50  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ fillPopup()

abstract void org.turro.zkoss.input.GenericBandbox< V >.fillPopup ( )
abstractprotected

◆ getBandPopup()

Bandpopup org.turro.zkoss.input.GenericBandbox< V >.getBandPopup ( )

Definition at line 36 of file GenericBandbox.java.

36  {
37  return bandPopup;
38  }
Here is the caller graph for this function:

◆ getObjectValue()

◆ isFilled()

boolean org.turro.zkoss.input.GenericBandbox< V >.isFilled ( )

Definition at line 40 of file GenericBandbox.java.

40  {
41  return filled;
42  }
Here is the caller graph for this function:

◆ setBandText()

void org.turro.zkoss.input.GenericBandbox< V >.setBandText ( String  text)
protected

Definition at line 57 of file GenericBandbox.java.

57  {
58  setText(text);
59  }
Here is the caller graph for this function:

◆ setObjectValue()

abstract void org.turro.zkoss.input.GenericBandbox< V >.setObjectValue ( v)
abstract

◆ setPopupComponent()

void org.turro.zkoss.input.GenericBandbox< V >.setPopupComponent ( Component  component)
protected

Definition at line 52 of file GenericBandbox.java.

52  {
53  bandPopup.appendChild(component);
54 
55  }
Here is the caller graph for this function:

Member Data Documentation

◆ value

V org.turro.zkoss.input.GenericBandbox< V >.value
protected

Definition at line 34 of file GenericBandbox.java.


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