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

Public Member Functions

String getId ()
 
void setId (String id)
 
String getDescribeId ()
 
void setDescribeId (String describeId)
 
String getPath ()
 
void setPath (String path)
 
Contact getCreator ()
 
void setCreator (Contact creator)
 
Date getDateCreation ()
 
void setDateCreation (Date dateCreation)
 
String getBody ()
 
void setBody (String body)
 
String getWiki ()
 
void setWiki (String wiki)
 
boolean isContainsWiki ()
 

Detailed Description

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

Definition at line 39 of file DescribeIt.java.

Member Function Documentation

◆ getBody()

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

Definition at line 106 of file DescribeIt.java.

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

◆ getCreator()

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

Definition at line 90 of file DescribeIt.java.

90  {
91  return creator;
92  }

◆ getDateCreation()

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

Definition at line 98 of file DescribeIt.java.

98  {
99  return dateCreation;
100  }

◆ getDescribeId()

String org.turro.contacts.DescribeIt.getDescribeId ( )

Definition at line 74 of file DescribeIt.java.

74  {
75  return describeId;
76  }

◆ getId()

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

Definition at line 66 of file DescribeIt.java.

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

◆ getPath()

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

Definition at line 82 of file DescribeIt.java.

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

◆ getWiki()

String org.turro.contacts.DescribeIt.getWiki ( )

Definition at line 114 of file DescribeIt.java.

114  {
115  if(Strings.isBlank(wiki) && !Strings.isBlank(body)) {
116  wiki = "$no_wiki\n" + body;
117  }
118  return wiki;
119  }
Here is the caller graph for this function:

◆ isContainsWiki()

boolean org.turro.contacts.DescribeIt.isContainsWiki ( )

Definition at line 127 of file DescribeIt.java.

127  {
128  return !Strings.isBlank(wiki) || id == null || Strings.isBlank(body);
129  }
Here is the caller graph for this function:

◆ setBody()

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

Definition at line 110 of file DescribeIt.java.

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

◆ setCreator()

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

Definition at line 94 of file DescribeIt.java.

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

◆ setDateCreation()

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

Definition at line 102 of file DescribeIt.java.

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

◆ setDescribeId()

void org.turro.contacts.DescribeIt.setDescribeId ( String  describeId)

Definition at line 78 of file DescribeIt.java.

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

◆ setId()

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

Definition at line 70 of file DescribeIt.java.

70  {
71  this.id = id;
72  }

◆ setPath()

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

Definition at line 86 of file DescribeIt.java.

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

◆ setWiki()

void org.turro.contacts.DescribeIt.setWiki ( String  wiki)

Definition at line 121 of file DescribeIt.java.

121  {
122  this.wiki = wiki;
123  }
Here is the caller graph for this function:

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