BrightSide Workbench Full Report + Source Code
org.turro.contacts.www.ContactsBean Class Reference

Public Member Functions

String getPublished () throws IOException
 
void setSummaryTemplate (String summaryTemplate)
 
void setFullTemplate (String fullTemplate)
 
void setSyndicationId (String syndicationId)
 
void setConstructor (IConstructor constructor)
 
void setContext (String context)
 
void setCount (String count)
 
void setSclass (String sclass)
 

Detailed Description

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

Definition at line 31 of file ContactsBean.java.

Member Function Documentation

◆ getPublished()

String org.turro.contacts.www.ContactsBean.getPublished ( ) throws IOException

Definition at line 36 of file ContactsBean.java.

36  {
37  constructor.setOutputToString();
38  ContactIterator pi = new ContactIterator(constructor, ElephantContext.getRootWebPath() + context, null);
39  pi.setNavigatorTop(true);
40  pi.setNavigatorBottom(true);
41  pi.setFullTemplate(fullTemplate);
42  pi.setSummaryTemplate(summaryTemplate);
43  pi.setPage(count);
44  pi.setSyndicationId(syndicationId);
45  pi.load();
46  pi.render();
47  constructor.setOut(null);
48  return constructor.getOutputString();
49  }
Here is the call graph for this function:

◆ setConstructor()

void org.turro.contacts.www.ContactsBean.setConstructor ( IConstructor  constructor)

Definition at line 63 of file ContactsBean.java.

63  {
64  this.constructor = constructor;
65  }

◆ setContext()

void org.turro.contacts.www.ContactsBean.setContext ( String  context)

Definition at line 67 of file ContactsBean.java.

67  {
68  this.context = context;
69  }

◆ setCount()

void org.turro.contacts.www.ContactsBean.setCount ( String  count)

Definition at line 71 of file ContactsBean.java.

71  {
72  this.count = (Integer) ObjectString.parseNativeString(count, Integer.class, true);
73  }

◆ setFullTemplate()

void org.turro.contacts.www.ContactsBean.setFullTemplate ( String  fullTemplate)

Definition at line 55 of file ContactsBean.java.

55  {
56  this.fullTemplate = fullTemplate;
57  }

◆ setSclass()

void org.turro.contacts.www.ContactsBean.setSclass ( String  sclass)

Definition at line 75 of file ContactsBean.java.

75  {
76  this.sclass = sclass;
77  }

◆ setSummaryTemplate()

void org.turro.contacts.www.ContactsBean.setSummaryTemplate ( String  summaryTemplate)

Definition at line 51 of file ContactsBean.java.

51  {
52  this.summaryTemplate = summaryTemplate;
53  }

◆ setSyndicationId()

void org.turro.contacts.www.ContactsBean.setSyndicationId ( String  syndicationId)

Definition at line 59 of file ContactsBean.java.

59  {
60  this.syndicationId = syndicationId;
61  }

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