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

Public Member Functions

void setConfiguration (Element root)
 
void getConfiguration (Element root)
 

Detailed Description

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

Definition at line 36 of file FeedReader.java.

Member Function Documentation

◆ getConfiguration()

void org.turro.zul.portal.content.FeedReader.getConfiguration ( Element  root)

Implements org.turro.zul.portal.IPortalContent.

Definition at line 46 of file FeedReader.java.

46  {
47  try {
48  feed = root.getAttributeValue("feed");
49  IConstructor constructor = Application.getApplication().getConstructor();
50  setWidth("100%");
51  setHeight("100%");
52  constructor.setOutputToString();
53 
54  FeedMacro.writeFeed(constructor, feed);
55  setContent(constructor.getOutputString());
56  constructor.setOut(null);
57  } catch (IOException ex) {
58  Logger.getLogger(ElephantInclude.class.getName()).log(Level.SEVERE, ElephantContext.logMsg(null), ex);
59  }
60  }
Here is the call graph for this function:

◆ setConfiguration()

void org.turro.zul.portal.content.FeedReader.setConfiguration ( Element  root)

Implements org.turro.zul.portal.IPortalContent.

Definition at line 41 of file FeedReader.java.

41  {
42  root.setAttribute("feed", feed);
43  }

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