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

Public Member Functions

 ListheaderAdapter (String label, String flex)
 
 ListheaderAdapter (String label, String src, String flex)
 

Detailed Description

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

Definition at line 26 of file ListheaderAdapter.java.

Constructor & Destructor Documentation

◆ ListheaderAdapter() [1/2]

org.turro.zkoss.layout.ListheaderAdapter.ListheaderAdapter ( String  label,
String  flex 
)

Definition at line 28 of file ListheaderAdapter.java.

28  {
29  super(label);
30  if(flex.matches("[0-9]+(px|\\%)")) {
31  setWidth(flex);
32  } else {
33  setHflex(flex);
34  }
35  }

◆ ListheaderAdapter() [2/2]

org.turro.zkoss.layout.ListheaderAdapter.ListheaderAdapter ( String  label,
String  src,
String  flex 
)

Definition at line 37 of file ListheaderAdapter.java.

37  {
38  super(label, src);
39  if(flex.matches("[0-9]+(px|\\%)")) {
40  setWidth(flex);
41  } else {
42  setHflex(flex);
43  }
44  }

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