BrightSide Workbench Full Report + Source Code
org.turro.user.content.MyWorksheet Class Reference
Inheritance diagram for org.turro.user.content.MyWorksheet:
Collaboration diagram for org.turro.user.content.MyWorksheet:

Public Member Functions

 MyWorksheet (IContact contact)
 
- Public Member Functions inherited from org.turro.user.content.AbstractUserContent
 AbstractUserContent (IContact contact)
 
String getId ()
 
IContact getContact ()
 
int getPriority ()
 
final void setPriority (int priority)
 
boolean isDirect ()
 
final void setDirect (boolean direct)
 
String getCaption ()
 
Set< String > getTags ()
 
String render (IConstructor constructor)
 
String getContent ()
 
void reset ()
 
int compareTo (IElephantUserContent o)
 

Protected Member Functions

boolean showIfEmpty ()
 
IContentIterator createIterator (IConstructor constructor)
 
- Protected Member Functions inherited from org.turro.user.content.AbstractUserContent
final void setCaption (String caption)
 
final void addTag (String tag)
 
String getFullPath ()
 
Writer createWriter ()
 

Detailed Description

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

Definition at line 31 of file MyWorksheet.java.

Constructor & Destructor Documentation

◆ MyWorksheet()

org.turro.user.content.MyWorksheet.MyWorksheet ( IContact  contact)

Definition at line 33 of file MyWorksheet.java.

33  {
34  super(contact);
35  setCaption("Worksheet");
36  setDirect(true);
37  setPriority(2);
38  addTag("worksheet");
39  }
Here is the call graph for this function:

Member Function Documentation

◆ createIterator()

IContentIterator org.turro.user.content.MyWorksheet.createIterator ( IConstructor  constructor)
protected

Reimplemented from org.turro.user.content.AbstractUserContent.

Definition at line 47 of file MyWorksheet.java.

47  {
48  WorkloadContentIterator dci = new WorkloadContentIterator(constructor, createWriter(), getContact(), false, getFullPath());
49  dci.setNavigatorTop(false);
50  dci.setNavigatorBottom(false);
51  dci.setPage(5);
52  dci.setSummaryTemplate("ucWorksheet");
53  return dci;
54  }
Here is the call graph for this function:

◆ showIfEmpty()

boolean org.turro.user.content.MyWorksheet.showIfEmpty ( )
protected

Reimplemented from org.turro.user.content.AbstractUserContent.

Definition at line 42 of file MyWorksheet.java.

42  {
43  return false;
44  }

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