BrightSide Workbench Full Report + Source Code
org.turro.dossier.entity.Worksheet Class Reference
Inheritance diagram for org.turro.dossier.entity.Worksheet:
Collaboration diagram for org.turro.dossier.entity.Worksheet:

Public Member Functions

Long getId ()
 
void setId (Long id)
 
String getIdContact ()
 
void setIdContact (String idContact)
 
int getSheetOrder ()
 
void setSheetOrder (int sheetOrder)
 
Issue getIssue ()
 
void setIssue (Issue issue)
 
IContact getIContact ()
 
void setIContact (IContact contact)
 

Detailed Description

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

Definition at line 35 of file Worksheet.java.

Member Function Documentation

◆ getIContact()

IContact org.turro.dossier.entity.Worksheet.getIContact ( )

Definition at line 86 of file Worksheet.java.

86  {
87  if(_contact == null) {
88  _contact = Contacts.getContactById(idContact);
89  }
90  return _contact;
91  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getId()

Long org.turro.dossier.entity.Worksheet.getId ( )

Definition at line 49 of file Worksheet.java.

49  {
50  return id;
51  }

◆ getIdContact()

String org.turro.dossier.entity.Worksheet.getIdContact ( )

Definition at line 57 of file Worksheet.java.

57  {
58  return idContact;
59  }

◆ getIssue()

Issue org.turro.dossier.entity.Worksheet.getIssue ( )

Definition at line 74 of file Worksheet.java.

74  {
75  return issue;
76  }
Here is the caller graph for this function:

◆ getSheetOrder()

int org.turro.dossier.entity.Worksheet.getSheetOrder ( )

Definition at line 66 of file Worksheet.java.

66  {
67  return sheetOrder;
68  }
Here is the caller graph for this function:

◆ setIContact()

void org.turro.dossier.entity.Worksheet.setIContact ( IContact  contact)

Definition at line 93 of file Worksheet.java.

93  {
94  _contact = contact;
95  idContact = _contact != null ? _contact.getId() : null;
96  }
Here is the call graph for this function:

◆ setId()

void org.turro.dossier.entity.Worksheet.setId ( Long  id)

Definition at line 53 of file Worksheet.java.

53  {
54  this.id = id;
55  }

◆ setIdContact()

void org.turro.dossier.entity.Worksheet.setIdContact ( String  idContact)

Definition at line 61 of file Worksheet.java.

61  {
62  this.idContact = idContact;
63  resetIContact();
64  }
Here is the caller graph for this function:

◆ setIssue()

void org.turro.dossier.entity.Worksheet.setIssue ( Issue  issue)

Definition at line 78 of file Worksheet.java.

78  {
79  this.issue = issue;
80  }
Here is the caller graph for this function:

◆ setSheetOrder()

void org.turro.dossier.entity.Worksheet.setSheetOrder ( int  sheetOrder)

Definition at line 70 of file Worksheet.java.

70  {
71  this.sheetOrder = sheetOrder;
72  }
Here is the caller graph for this function:

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