- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 28 of file PortalColumn.java.
◆ afterCompose()
void org.turro.zul.portal.PortalColumn.afterCompose |
( |
| ) |
|
Definition at line 71 of file PortalColumn.java.
72 for(PortalContent content : contents) {
73 content.afterCompose();
◆ compareTo()
int org.turro.zul.portal.PortalColumn.compareTo |
( |
Object |
o | ) |
|
Definition at line 52 of file PortalColumn.java.
53 if(o !=
null && o instanceof PortalColumn) {
54 return order.compareTo(((PortalColumn) o).order);
◆ load()
void org.turro.zul.portal.PortalColumn.load |
( |
Element |
root | ) |
|
Definition at line 33 of file PortalColumn.java.
34 order = Integer.valueOf(root.getAttributeValue(
"order",
"0"));
35 setWidth(root.getAttributeValue(
"width",
"100%"));
36 setStyle(root.getAttributeValue(
"style",
"padding:5px"));
39 for(PortalContent pc : contents) {
◆ save()
void org.turro.zul.portal.PortalColumn.save |
( |
Element |
root | ) |
|
Definition at line 44 of file PortalColumn.java.
45 root.setAttribute(
"order", getPosition(order) +
"");
46 root.setAttribute(
"width", getWidth());
47 root.setAttribute(
"style", getStyle());
48 contents.
save(root,
this);
void save(Element root, PortalColumn column)
The documentation for this class was generated from the following file: