BrightSide Workbench Full Report + Source Code
org.turro.dossier.zul.issue.IssueLabel Class Reference
Inheritance diagram for org.turro.dossier.zul.issue.IssueLabel:
Collaboration diagram for org.turro.dossier.zul.issue.IssueLabel:

Public Member Functions

 IssueLabel (Issue entity)
 
 IssueLabel ()
 
void setIssue (Issue issue)
 
void afterCompose ()
 

Detailed Description

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

Definition at line 36 of file issue/IssueLabel.java.

Constructor & Destructor Documentation

◆ IssueLabel() [1/2]

org.turro.dossier.zul.issue.IssueLabel.IssueLabel ( Issue  entity)

Definition at line 40 of file issue/IssueLabel.java.

Here is the call graph for this function:

◆ IssueLabel() [2/2]

org.turro.dossier.zul.issue.IssueLabel.IssueLabel ( )

Definition at line 45 of file issue/IssueLabel.java.

45  {
46  }

Member Function Documentation

◆ afterCompose()

void org.turro.dossier.zul.issue.IssueLabel.afterCompose ( )

Definition at line 67 of file issue/IssueLabel.java.

67  {
68  Application app = Application.getApplication();
69  IssueWrapper iw = new IssueWrapper(entity);
70  if(app.isInRole("issue:show") &&
71  (app.isInRole("issue:all") || iw.isFullParticipant())) {
72  addClickListener();
73  }
74  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ setIssue()

void org.turro.dossier.zul.issue.IssueLabel.setIssue ( Issue  issue)

Definition at line 48 of file issue/IssueLabel.java.

48  {
49  entity = issue;
50  setLabel(entity.getDescription());
51  if(Strings.isBlank(getLabel())) {
52  setLabel(I_.get("No description!"));
53  }
54  setImage("/_zul/images/issue.png");
55  }
Here is the call graph for this function:
Here is the caller graph for this function:

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