- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
Definition at line 30 of file IssueItem.java.
◆ IssueItem() [1/2]
org.turro.dossier.graph.IssueItem.IssueItem |
( |
Cached< Dao > |
dao, |
|
|
Long |
issueId |
|
) |
| |
Definition at line 34 of file IssueItem.java.
35 this.issueId = issueId;
36 this.issue = Cached.instance(() -> dao.get().find(Issue.class,
this.issueId));
◆ IssueItem() [2/2]
org.turro.dossier.graph.IssueItem.IssueItem |
( |
Issue |
issue | ) |
|
Definition at line 39 of file IssueItem.java.
40 this.issueId = issue.getId();
41 this.issue = Cached.instance(issue);
◆ equals()
boolean org.turro.dossier.graph.IssueItem.equals |
( |
Object |
obj | ) |
|
Definition at line 66 of file IssueItem.java.
73 if (getClass() != obj.getClass()) {
77 return Objects.equals(this.issueId, other.issueId);
IssueItem(Cached< Dao > dao, Long issueId)
◆ getIssue()
Issue org.turro.dossier.graph.IssueItem.getIssue |
( |
| ) |
|
◆ getIssueId()
Long org.turro.dossier.graph.IssueItem.getIssueId |
( |
| ) |
|
◆ hashCode()
int org.turro.dossier.graph.IssueItem.hashCode |
( |
| ) |
|
Definition at line 59 of file IssueItem.java.
61 hash = 17 * hash + Objects.hashCode(this.issueId);
The documentation for this class was generated from the following file: