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

Public Member Functions

 MyProjects (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 32 of file MyProjects.java.

Constructor & Destructor Documentation

◆ MyProjects()

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

Definition at line 34 of file MyProjects.java.

34  {
35  super(contact);
36  setCaption("My projects");
37  setDirect(true);
38  addTag("projects");
39  }
Here is the call graph for this function:

Member Function Documentation

◆ createIterator()

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

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

Definition at line 47 of file MyProjects.java.

47  {
48  DossierContentIterator dci = new DossierContentIterator(constructor, createWriter(), getContact(), false, getFullPath());
49  dci.setRestricted(true);
50  dci.setNavigatorTop(false);
51  dci.setNavigatorBottom(false);
52  dci.setPage(5);
53  dci.setDossierTypes(Arrays.asList("TYPE_PROJECT"));
54  dci.setDoMatching(true);
55  dci.setSummaryTemplate("ucMyProjects");
56  return dci;
57  }
Here is the call graph for this function:

◆ showIfEmpty()

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

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

Definition at line 42 of file MyProjects.java.

42  {
43  return false;
44  }

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