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

Public Member Functions

 PercentLabel (Double value)
 
 PercentLabel ()
 
void setValue (Double value)
 

Detailed Description

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

Definition at line 27 of file PercentLabel.java.

Constructor & Destructor Documentation

◆ PercentLabel() [1/2]

org.turro.zkoss.label.PercentLabel.PercentLabel ( Double  value)

Definition at line 29 of file PercentLabel.java.

29  {
30  super(DecimalFormats.format(value * 100.0) + "%");
31  }
Here is the call graph for this function:

◆ PercentLabel() [2/2]

org.turro.zkoss.label.PercentLabel.PercentLabel ( )

Definition at line 33 of file PercentLabel.java.

33  {
34  }

Member Function Documentation

◆ setValue()

void org.turro.zkoss.label.PercentLabel.setValue ( Double  value)

Definition at line 36 of file PercentLabel.java.

36  {
37  super.setValue(DecimalFormats.format(value * 100.0) + "%");
38  }
Here is the call graph for this function:

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