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

Public Member Functions

void load (Element root)
 
void save (Element root, PortalContainer container)
 

Detailed Description

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

Definition at line 29 of file PortalColumnSet.java.

Member Function Documentation

◆ load()

void org.turro.zul.portal.PortalColumnSet.load ( Element  root)

Definition at line 31 of file PortalColumnSet.java.

31  {
32  for(Element el : (List<Element>) root.getChildren("portal-column")) {
33  PortalColumn pc = new PortalColumn();
34  pc.load(el);
35  add(pc);
36  }
37  }
Here is the call graph for this function:

◆ save()

void org.turro.zul.portal.PortalColumnSet.save ( Element  root,
PortalContainer  container 
)

Definition at line 39 of file PortalColumnSet.java.

39  {
40  for(Component pc : container.getChildren()) {
41  Element el = new Element("portal-column");
42  ((PortalColumn)pc).save(el);
43  root.addContent(el);
44  }
45  }

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