BrightSide Workbench Full Report + Source Code
org.turro.zkoss.label.LabelTypes Class Reference

Static Public Member Functions

static Label getSoftLabel (String value)
 
static Label getTinyLabel (String value)
 
static Label getCaptionLabel (String value)
 
static Label getGridCaptionLabel (String value)
 
static Label getPreLabel (String value)
 
static Label getEmptyLabel ()
 

Detailed Description

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

Definition at line 26 of file LabelTypes.java.

Member Function Documentation

◆ getCaptionLabel()

static Label org.turro.zkoss.label.LabelTypes.getCaptionLabel ( String  value)
static

Definition at line 40 of file LabelTypes.java.

40  {
41  Label l = new Label(value);
42  l.setSclass("captionLabel");
43  return l;
44  }
Here is the caller graph for this function:

◆ getEmptyLabel()

static Label org.turro.zkoss.label.LabelTypes.getEmptyLabel ( )
static

Definition at line 59 of file LabelTypes.java.

59  {
60  return new Label("");
61  }

◆ getGridCaptionLabel()

static Label org.turro.zkoss.label.LabelTypes.getGridCaptionLabel ( String  value)
static

Definition at line 46 of file LabelTypes.java.

46  {
47  Label l = new Label(value);
48  l.setSclass("grid-caption");
49  return l;
50  }

◆ getPreLabel()

static Label org.turro.zkoss.label.LabelTypes.getPreLabel ( String  value)
static

Definition at line 52 of file LabelTypes.java.

52  {
53  Label l = new Label(value);
54  l.setSclass("preLabel");
55  l.setPre(true);
56  return l;
57  }
Here is the caller graph for this function:

◆ getSoftLabel()

static Label org.turro.zkoss.label.LabelTypes.getSoftLabel ( String  value)
static

Definition at line 28 of file LabelTypes.java.

28  {
29  Label l = new Label(value);
30  l.setSclass("softLabel");
31  return l;
32  }
Here is the caller graph for this function:

◆ getTinyLabel()

static Label org.turro.zkoss.label.LabelTypes.getTinyLabel ( String  value)
static

Definition at line 34 of file LabelTypes.java.

34  {
35  Label l = new Label(value);
36  l.setSclass("tinyLabel");
37  return l;
38  }
Here is the caller graph for this function:

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