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

Public Member Functions

Date getCreation ()
 
void setCreation (Date creation)
 
String getDescription ()
 
void setDescription (String description)
 
String getDestination ()
 
void setDestination (String destination)
 
String getOrigin ()
 
void setOrigin (String origin)
 
boolean isUnbreakable ()
 
void setUnbreakable (boolean unbreakable)
 
boolean isEmpty ()
 

Detailed Description

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

Definition at line 33 of file RelatedPaths.java.

Member Function Documentation

◆ getCreation()

Date org.turro.contacts.RelatedPaths.getCreation ( )

Definition at line 45 of file RelatedPaths.java.

45  {
46  return creation;
47  }

◆ getDescription()

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

Definition at line 53 of file RelatedPaths.java.

53  {
54  return description;
55  }

◆ getDestination()

String org.turro.contacts.RelatedPaths.getDestination ( )

Definition at line 61 of file RelatedPaths.java.

61  {
62  return destination;
63  }

◆ getOrigin()

String org.turro.contacts.RelatedPaths.getOrigin ( )

Definition at line 69 of file RelatedPaths.java.

69  {
70  return origin;
71  }

◆ isEmpty()

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

Definition at line 87 of file RelatedPaths.java.

87  {
88  return Strings.isBlank(origin) || Strings.isBlank(destination);
89  }
Here is the caller graph for this function:

◆ isUnbreakable()

boolean org.turro.contacts.RelatedPaths.isUnbreakable ( )

Definition at line 77 of file RelatedPaths.java.

77  {
78  return unbreakable;
79  }

◆ setCreation()

void org.turro.contacts.RelatedPaths.setCreation ( Date  creation)

Definition at line 49 of file RelatedPaths.java.

49  {
50  this.creation = creation;
51  }
Here is the caller graph for this function:

◆ setDescription()

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

Definition at line 57 of file RelatedPaths.java.

57  {
58  this.description = description;
59  }
Here is the caller graph for this function:

◆ setDestination()

void org.turro.contacts.RelatedPaths.setDestination ( String  destination)

Definition at line 65 of file RelatedPaths.java.

65  {
66  this.destination = destination;
67  }
Here is the caller graph for this function:

◆ setOrigin()

void org.turro.contacts.RelatedPaths.setOrigin ( String  origin)

Definition at line 73 of file RelatedPaths.java.

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

◆ setUnbreakable()

void org.turro.contacts.RelatedPaths.setUnbreakable ( boolean  unbreakable)

Definition at line 81 of file RelatedPaths.java.

81  {
82  this.unbreakable = unbreakable;
83  }

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