BrightSide Workbench Full Report + Source Code
org.turro.zkoss.label.LabelTip Class Reference
Inheritance diagram for org.turro.zkoss.label.LabelTip:
Collaboration diagram for org.turro.zkoss.label.LabelTip:

Public Member Functions

 LabelTip (int maxChars, String value)
 
 LabelTip (String value)
 
 LabelTip ()
 
void setMaxChars (int maxChars)
 
void setValue (String value)
 

Detailed Description

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

Definition at line 28 of file LabelTip.java.

Constructor & Destructor Documentation

◆ LabelTip() [1/3]

org.turro.zkoss.label.LabelTip.LabelTip ( int  maxChars,
String  value 
)

Definition at line 30 of file LabelTip.java.

30  {
31  super(value);
32  setMaxChars(maxChars);
33  }
void setMaxChars(int maxChars)
Definition: LabelTip.java:42
Here is the call graph for this function:

◆ LabelTip() [2/3]

org.turro.zkoss.label.LabelTip.LabelTip ( String  value)

Definition at line 35 of file LabelTip.java.

35  {
36  super(value);
37  }

◆ LabelTip() [3/3]

org.turro.zkoss.label.LabelTip.LabelTip ( )

Definition at line 39 of file LabelTip.java.

39  {
40  }

Member Function Documentation

◆ setMaxChars()

void org.turro.zkoss.label.LabelTip.setMaxChars ( int  maxChars)

Definition at line 42 of file LabelTip.java.

42  {
43  setTooltiptext(getValue());
44  setValue(Strings.truncateAndWarn(getValue(), maxChars));
45  }
void setValue(String value)
Definition: LabelTip.java:48
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setValue()

void org.turro.zkoss.label.LabelTip.setValue ( String  value)

Definition at line 48 of file LabelTip.java.

48  {
49  super.setValue(value);
50  }
Here is the caller graph for this function:

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