BrightSide Workbench Full Report + Source Code
org.turro.contacts.CommentIt Class Reference
Inheritance diagram for org.turro.contacts.CommentIt:
Collaboration diagram for org.turro.contacts.CommentIt:

Public Member Functions

String getId ()
 
void setId (String id)
 
String getPath ()
 
void setPath (String path)
 
Contact getCreator ()
 
void setCreator (Contact creator)
 
Date getDateCreation ()
 
void setDateCreation (Date dateCreation)
 
String getBody ()
 
void setBody (String body)
 
boolean isAccepted ()
 
void setAccepted (boolean accepted)
 
String getAuthor ()
 
void setAuthor (String author)
 
String getAuthor_email ()
 
void setAuthor_email (String author_email)
 
String getAuthor_web ()
 
void setAuthor_web (String author_web)
 
String getAuthor_ip ()
 
void setAuthor_ip (String author_ip)
 
String getName ()
 
String getEmail ()
 
String getWeb ()
 
IElephantEntity getOwnerEntity ()
 

Detailed Description

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

Definition at line 42 of file CommentIt.java.

Member Function Documentation

◆ getAuthor()

String org.turro.contacts.CommentIt.getAuthor ( )

Definition at line 121 of file CommentIt.java.

121  {
122  return author;
123  }

◆ getAuthor_email()

String org.turro.contacts.CommentIt.getAuthor_email ( )

Definition at line 129 of file CommentIt.java.

129  {
130  return author_email;
131  }

◆ getAuthor_ip()

String org.turro.contacts.CommentIt.getAuthor_ip ( )

Definition at line 145 of file CommentIt.java.

145  {
146  return author_ip;
147  }

◆ getAuthor_web()

String org.turro.contacts.CommentIt.getAuthor_web ( )

Definition at line 137 of file CommentIt.java.

137  {
138  return author_web;
139  }

◆ getBody()

String org.turro.contacts.CommentIt.getBody ( )

Definition at line 105 of file CommentIt.java.

105  {
106  return body;
107  }
Here is the caller graph for this function:

◆ getCreator()

Contact org.turro.contacts.CommentIt.getCreator ( )

Definition at line 89 of file CommentIt.java.

89  {
90  return creator;
91  }
Here is the caller graph for this function:

◆ getDateCreation()

Date org.turro.contacts.CommentIt.getDateCreation ( )

Definition at line 97 of file CommentIt.java.

97  {
98  return dateCreation;
99  }
Here is the caller graph for this function:

◆ getEmail()

String org.turro.contacts.CommentIt.getEmail ( )

Definition at line 163 of file CommentIt.java.

163  {
164  if(creator != null) {
165  Connector c = creator.getConnectorMap().get(IUser.CONNECTOR_EMAIL);
166  return c != null ? c.getValue() : author_email;
167  } else {
168  return author_email;
169  }
170  }
Map< String, Connector > getConnectorMap()
Definition: Contact.java:499
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getId()

String org.turro.contacts.CommentIt.getId ( )

Definition at line 73 of file CommentIt.java.

73  {
74  return id;
75  }

◆ getName()

String org.turro.contacts.CommentIt.getName ( )

Definition at line 155 of file CommentIt.java.

155  {
156  if(creator != null) {
157  return creator.getName();
158  } else {
159  return author;
160  }
161  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getOwnerEntity()

IElephantEntity org.turro.contacts.CommentIt.getOwnerEntity ( )

Definition at line 183 of file CommentIt.java.

183  {
184  return Entities.getController(new Path(path).getTill(2));
185  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getPath()

String org.turro.contacts.CommentIt.getPath ( )

Definition at line 81 of file CommentIt.java.

81  {
82  return path;
83  }
Here is the caller graph for this function:

◆ getWeb()

String org.turro.contacts.CommentIt.getWeb ( )

Definition at line 172 of file CommentIt.java.

172  {
173  if(creator != null) {
174  Connector c = creator.getConnectorMap().get("Web");
175  return c != null ? c.getValue() : author_web;
176  } else {
177  return author_web;
178  }
179  }
Here is the call graph for this function:

◆ isAccepted()

boolean org.turro.contacts.CommentIt.isAccepted ( )

Definition at line 113 of file CommentIt.java.

113  {
114  return accepted;
115  }

◆ setAccepted()

void org.turro.contacts.CommentIt.setAccepted ( boolean  accepted)

Definition at line 117 of file CommentIt.java.

117  {
118  this.accepted = accepted;
119  }
Here is the caller graph for this function:

◆ setAuthor()

void org.turro.contacts.CommentIt.setAuthor ( String  author)

Definition at line 125 of file CommentIt.java.

125  {
126  this.author = author;
127  }
Here is the caller graph for this function:

◆ setAuthor_email()

void org.turro.contacts.CommentIt.setAuthor_email ( String  author_email)

Definition at line 133 of file CommentIt.java.

133  {
134  this.author_email = author_email;
135  }
Here is the caller graph for this function:

◆ setAuthor_ip()

void org.turro.contacts.CommentIt.setAuthor_ip ( String  author_ip)

Definition at line 149 of file CommentIt.java.

149  {
150  this.author_ip = author_ip;
151  }
Here is the caller graph for this function:

◆ setAuthor_web()

void org.turro.contacts.CommentIt.setAuthor_web ( String  author_web)

Definition at line 141 of file CommentIt.java.

141  {
142  this.author_web = author_web;
143  }
Here is the caller graph for this function:

◆ setBody()

void org.turro.contacts.CommentIt.setBody ( String  body)

Definition at line 109 of file CommentIt.java.

109  {
110  this.body = body;
111  }
Here is the caller graph for this function:

◆ setCreator()

void org.turro.contacts.CommentIt.setCreator ( Contact  creator)

Definition at line 93 of file CommentIt.java.

93  {
94  this.creator = creator;
95  }
Here is the caller graph for this function:

◆ setDateCreation()

void org.turro.contacts.CommentIt.setDateCreation ( Date  dateCreation)

Definition at line 101 of file CommentIt.java.

101  {
102  this.dateCreation = dateCreation;
103  }
Here is the caller graph for this function:

◆ setId()

void org.turro.contacts.CommentIt.setId ( String  id)

Definition at line 77 of file CommentIt.java.

77  {
78  this.id = id;
79  }

◆ setPath()

void org.turro.contacts.CommentIt.setPath ( String  path)

Definition at line 85 of file CommentIt.java.

85  {
86  this.path = path;
87  }
Here is the caller graph for this function:

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