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

Public Member Functions

 Warnings (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 Warnings.java.

Constructor & Destructor Documentation

◆ Warnings()

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

Definition at line 33 of file Warnings.java.

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

Member Function Documentation

◆ createIterator()

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

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

Definition at line 47 of file Warnings.java.

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

◆ showIfEmpty()

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

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

Definition at line 42 of file Warnings.java.

42  {
43  return false;
44  }

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