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

Public Member Functions

void load (Element root)
 
void save (Element root, PortalColumn column)
 

Detailed Description

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

Definition at line 29 of file PortalContentSet.java.

Member Function Documentation

◆ load()

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

Definition at line 31 of file PortalContentSet.java.

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

◆ save()

void org.turro.zul.portal.PortalContentSet.save ( Element  root,
PortalColumn  column 
)

Definition at line 39 of file PortalContentSet.java.

39  {
40  for(Component pc : column.getChildren()) {
41  Element el = new Element("portal-content");
42  ((PortalContent)pc).save(el);
43  root.addContent(el);
44  }
45  }
Here is the caller graph for this function:

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