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

Public Member Functions

long getId ()
 
void setId (long id)
 
Document getDocument ()
 
void setDocument (Document document)
 
Date getPreparedDate ()
 
void setPreparedDate (Date preparedDate)
 
Date getDeliveredDate ()
 
void setDeliveredDate (Date deliveredDate)
 
String getReceiver ()
 
void setReceiver (String receiver)
 
String getReceiverId ()
 
void setReceiverId (String receiverId)
 
void setIPrepare (IContact contact)
 
IContact getIPrepare ()
 
void setIDeliver (IContact contact)
 
IContact getIDeliver ()
 

Detailed Description

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

Definition at line 40 of file FollowUp.java.

Member Function Documentation

◆ getDeliveredDate()

Date org.turro.financials.entity.FollowUp.getDeliveredDate ( )

Definition at line 81 of file FollowUp.java.

81  {
82  return deliveredDate;
83  }

◆ getDocument()

Document org.turro.financials.entity.FollowUp.getDocument ( )

Definition at line 65 of file FollowUp.java.

65  {
66  return document;
67  }
Here is the caller graph for this function:

◆ getId()

long org.turro.financials.entity.FollowUp.getId ( )

Definition at line 57 of file FollowUp.java.

57  {
58  return id;
59  }

◆ getIDeliver()

IContact org.turro.financials.entity.FollowUp.getIDeliver ( )

Definition at line 122 of file FollowUp.java.

122  {
123  if(!Strings.isBlank(deliverId)) {
124  return Contacts.getContactById(deliverId);
125  }
126  return null;
127  }
Here is the call graph for this function:

◆ getIPrepare()

IContact org.turro.financials.entity.FollowUp.getIPrepare ( )

Definition at line 111 of file FollowUp.java.

111  {
112  if(!Strings.isBlank(prepareId)) {
113  return Contacts.getContactById(prepareId);
114  }
115  return null;
116  }
Here is the call graph for this function:

◆ getPreparedDate()

Date org.turro.financials.entity.FollowUp.getPreparedDate ( )

Definition at line 73 of file FollowUp.java.

73  {
74  return preparedDate;
75  }

◆ getReceiver()

String org.turro.financials.entity.FollowUp.getReceiver ( )

Definition at line 89 of file FollowUp.java.

89  {
90  return receiver;
91  }

◆ getReceiverId()

String org.turro.financials.entity.FollowUp.getReceiverId ( )

Definition at line 97 of file FollowUp.java.

97  {
98  return receiverId;
99  }

◆ setDeliveredDate()

void org.turro.financials.entity.FollowUp.setDeliveredDate ( Date  deliveredDate)

Definition at line 85 of file FollowUp.java.

85  {
86  this.deliveredDate = deliveredDate;
87  }

◆ setDocument()

void org.turro.financials.entity.FollowUp.setDocument ( Document  document)

Definition at line 69 of file FollowUp.java.

69  {
70  this.document = document;
71  }

◆ setId()

void org.turro.financials.entity.FollowUp.setId ( long  id)

Definition at line 61 of file FollowUp.java.

61  {
62  this.id = id;
63  }

◆ setIDeliver()

void org.turro.financials.entity.FollowUp.setIDeliver ( IContact  contact)

Definition at line 118 of file FollowUp.java.

118  {
119  deliverId = contact.getId();
120  }
Here is the call graph for this function:

◆ setIPrepare()

void org.turro.financials.entity.FollowUp.setIPrepare ( IContact  contact)

Definition at line 107 of file FollowUp.java.

107  {
108  prepareId = contact.getId();
109  }
Here is the call graph for this function:

◆ setPreparedDate()

void org.turro.financials.entity.FollowUp.setPreparedDate ( Date  preparedDate)

Definition at line 77 of file FollowUp.java.

77  {
78  this.preparedDate = preparedDate;
79  }

◆ setReceiver()

void org.turro.financials.entity.FollowUp.setReceiver ( String  receiver)

Definition at line 93 of file FollowUp.java.

93  {
94  this.receiver = receiver;
95  }

◆ setReceiverId()

void org.turro.financials.entity.FollowUp.setReceiverId ( String  receiverId)

Definition at line 101 of file FollowUp.java.

101  {
102  this.receiverId = receiverId;
103  }

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