BrightSide Workbench Full Report + Source Code
org.turro.zul.frame.ScrollTabpanel Class Reference
Inheritance diagram for org.turro.zul.frame.ScrollTabpanel:
Collaboration diagram for org.turro.zul.frame.ScrollTabpanel:

Public Member Functions

 ScrollTabpanel ()
 
void appendScrollableChild (Component child)
 

Detailed Description

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

Definition at line 27 of file ScrollTabpanel.java.

Constructor & Destructor Documentation

◆ ScrollTabpanel()

org.turro.zul.frame.ScrollTabpanel.ScrollTabpanel ( )

Definition at line 31 of file ScrollTabpanel.java.

31  {
32  setVflex("1");
33  setHflex("1");
34  Borderlayout layout = new Borderlayout();
35  appendChild(layout);
36  Center center = new Center();
37  center.setBorder("none");
38  center.setAutoscroll(true);
39  layout.appendChild(center);
40  Panel panel = new Panel();
41  panel.setBorder("none");
42  center.appendChild(panel);
43  panelchildren = new Panelchildren();
44  panel.appendChild(panelchildren);
45  }

Member Function Documentation

◆ appendScrollableChild()

void org.turro.zul.frame.ScrollTabpanel.appendScrollableChild ( Component  child)

Definition at line 47 of file ScrollTabpanel.java.

47  {
48  panelchildren.appendChild(child);
49  }
Here is the caller graph for this function:

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