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

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)
 
int getStars ()
 
void setStars (int stars)
 
String getAuthor_ip ()
 
void setAuthor_ip (String author_ip)
 
String getName ()
 
IElephantEntity getOwnerEntity ()
 

Detailed Description

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

Definition at line 40 of file StarIt.java.

Member Function Documentation

◆ getAuthor_ip()

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

Definition at line 101 of file StarIt.java.

101  {
102  return author_ip;
103  }

◆ getCreator()

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

Definition at line 77 of file StarIt.java.

77  {
78  return creator;
79  }

◆ getDateCreation()

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

Definition at line 85 of file StarIt.java.

85  {
86  return dateCreation;
87  }
Here is the caller graph for this function:

◆ getId()

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

Definition at line 61 of file StarIt.java.

61  {
62  return id;
63  }

◆ getName()

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

Definition at line 111 of file StarIt.java.

111  {
112  if(creator != null) {
113  return creator.getName();
114  } else {
115  return author_ip;
116  }
117  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getOwnerEntity()

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

Definition at line 121 of file StarIt.java.

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

◆ getPath()

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

Definition at line 69 of file StarIt.java.

69  {
70  return path;
71  }
Here is the caller graph for this function:

◆ getStars()

int org.turro.contacts.StarIt.getStars ( )

Definition at line 93 of file StarIt.java.

93  {
94  return stars;
95  }
Here is the caller graph for this function:

◆ setAuthor_ip()

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

Definition at line 105 of file StarIt.java.

105  {
106  this.author_ip = author_ip;
107  }
Here is the caller graph for this function:

◆ setCreator()

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

Definition at line 81 of file StarIt.java.

81  {
82  this.creator = creator;
83  }
Here is the caller graph for this function:

◆ setDateCreation()

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

Definition at line 89 of file StarIt.java.

89  {
90  this.dateCreation = dateCreation;
91  }
Here is the caller graph for this function:

◆ setId()

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

Definition at line 65 of file StarIt.java.

65  {
66  this.id = id;
67  }

◆ setPath()

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

Definition at line 73 of file StarIt.java.

73  {
74  this.path = path;
75  }
Here is the caller graph for this function:

◆ setStars()

void org.turro.contacts.StarIt.setStars ( int  stars)

Definition at line 97 of file StarIt.java.

97  {
98  this.stars = stars;
99  }
Here is the caller graph for this function:

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