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

Public Member Functions

String getId ()
 
void setId (String id)
 
Date getControl ()
 
void setControl (Date control)
 
String getName ()
 
void setName (String name)
 
String getPath ()
 
void setPath (String path)
 
Contact getContact ()
 
void setContact (Contact contact)
 
Address getAddress ()
 
void setAddress (Address address)
 
String getDescription ()
 
void setDescription (String description)
 
boolean isEmpty ()
 

Detailed Description

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

Definition at line 37 of file InTouch.java.

Member Function Documentation

◆ getAddress()

Address org.turro.contacts.InTouch.getAddress ( )

Definition at line 101 of file InTouch.java.

101  {
102  return address;
103  }
Here is the caller graph for this function:

◆ getContact()

Contact org.turro.contacts.InTouch.getContact ( )

Definition at line 93 of file InTouch.java.

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

◆ getControl()

Date org.turro.contacts.InTouch.getControl ( )

Definition at line 69 of file InTouch.java.

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

◆ getDescription()

String org.turro.contacts.InTouch.getDescription ( )

Definition at line 109 of file InTouch.java.

109  {
110  return description;
111  }
Here is the caller graph for this function:

◆ getId()

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

Definition at line 61 of file InTouch.java.

61  {
62  return id;
63  }

◆ getName()

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

Definition at line 77 of file InTouch.java.

77  {
78  return name;
79  }
Here is the caller graph for this function:

◆ getPath()

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

Definition at line 85 of file InTouch.java.

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

◆ isEmpty()

boolean org.turro.contacts.InTouch.isEmpty ( )

Definition at line 119 of file InTouch.java.

119  {
120  return Strings.isBlank(path) ||
121  Strings.isBlank(name) || contact == null;
122  }

◆ setAddress()

void org.turro.contacts.InTouch.setAddress ( Address  address)

Definition at line 105 of file InTouch.java.

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

◆ setContact()

void org.turro.contacts.InTouch.setContact ( Contact  contact)

Definition at line 97 of file InTouch.java.

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

◆ setControl()

void org.turro.contacts.InTouch.setControl ( Date  control)

Definition at line 73 of file InTouch.java.

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

◆ setDescription()

void org.turro.contacts.InTouch.setDescription ( String  description)

Definition at line 113 of file InTouch.java.

113  {
114  this.description = description;
115  }
Here is the caller graph for this function:

◆ setId()

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

Definition at line 65 of file InTouch.java.

65  {
66  this.id = id;
67  }

◆ setName()

void org.turro.contacts.InTouch.setName ( String  name)

Definition at line 81 of file InTouch.java.

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

◆ setPath()

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

Definition at line 89 of file InTouch.java.

89  {
90  this.path = path;
91  }

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