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

Public Member Functions

 PortalContainer ()
 
void setFiles (File userFile, File confFile)
 
String getLabel ()
 
void applyChanges ()
 
void afterCompose ()
 

Detailed Description

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

Definition at line 45 of file PortalContainer.java.

Constructor & Destructor Documentation

◆ PortalContainer()

org.turro.zul.portal.PortalContainer.PortalContainer ( )

Definition at line 51 of file PortalContainer.java.

51  {
52  setSclass("portalContainer");
53  setVflex("true");
54  addEventListener(Events.ON_PORTAL_MOVE, new EventListener() {
55  @Override
56  public void onEvent(Event event) throws Exception {
57  applyChanges();
58  }
59  });
60  }
Here is the call graph for this function:

Member Function Documentation

◆ afterCompose()

void org.turro.zul.portal.PortalContainer.afterCompose ( )

Definition at line 123 of file PortalContainer.java.

123  {
124  for(PortalColumn column : columns) {
125  column.afterCompose();
126  }
127  }
Here is the caller graph for this function:

◆ applyChanges()

void org.turro.zul.portal.PortalContainer.applyChanges ( )

Definition at line 75 of file PortalContainer.java.

75  {
76  writeConfiguration(Application.getApplication().getConstructor());
77  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getLabel()

String org.turro.zul.portal.PortalContainer.getLabel ( )

Definition at line 71 of file PortalContainer.java.

71  {
72  return label;
73  }
Here is the caller graph for this function:

◆ setFiles()

void org.turro.zul.portal.PortalContainer.setFiles ( File  userFile,
File  confFile 
)

Definition at line 62 of file PortalContainer.java.

62  {
63  this.userFile = userFile;
64  this.confFile = confFile;
65  if(userFile.exists()) {
66  this.confFile = userFile;
67  }
68  readConfiguration();
69  }
Here is the caller graph for this function:

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