BrightSide Workbench Full Report + Source Code
org.turro.elephant.entities.db.Related Class Reference
Inheritance diagram for org.turro.elephant.entities.db.Related:
Collaboration diagram for org.turro.elephant.entities.db.Related:

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 ()
 
IElephantEntity getOriginEntity ()
 
IElephantEntity getDestinationEntity ()
 

Detailed Description

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

Definition at line 36 of file Related.java.

Member Function Documentation

◆ getCreation()

Date org.turro.elephant.entities.db.Related.getCreation ( )

Definition at line 48 of file Related.java.

48  {
49  return creation;
50  }

◆ getDescription()

String org.turro.elephant.entities.db.Related.getDescription ( )

Definition at line 56 of file Related.java.

56  {
57  return description;
58  }
Here is the caller graph for this function:

◆ getDestination()

String org.turro.elephant.entities.db.Related.getDestination ( )

Definition at line 64 of file Related.java.

64  {
65  return destination;
66  }
Here is the caller graph for this function:

◆ getDestinationEntity()

IElephantEntity org.turro.elephant.entities.db.Related.getDestinationEntity ( )

Definition at line 100 of file Related.java.

100  {
101  return Entities.getController(destination);
102  }
Here is the call graph for this function:

◆ getOrigin()

String org.turro.elephant.entities.db.Related.getOrigin ( )

Definition at line 72 of file Related.java.

72  {
73  return origin;
74  }
Here is the caller graph for this function:

◆ getOriginEntity()

IElephantEntity org.turro.elephant.entities.db.Related.getOriginEntity ( )

Definition at line 96 of file Related.java.

96  {
97  return Entities.getController(origin);
98  }
Here is the call graph for this function:

◆ isEmpty()

boolean org.turro.elephant.entities.db.Related.isEmpty ( )

Definition at line 90 of file Related.java.

90  {
91  return Strings.isBlank(origin) || Strings.isBlank(destination);
92  }
Here is the caller graph for this function:

◆ isUnbreakable()

boolean org.turro.elephant.entities.db.Related.isUnbreakable ( )

Definition at line 80 of file Related.java.

80  {
81  return unbreakable;
82  }

◆ setCreation()

void org.turro.elephant.entities.db.Related.setCreation ( Date  creation)

Definition at line 52 of file Related.java.

52  {
53  this.creation = creation;
54  }
Here is the caller graph for this function:

◆ setDescription()

void org.turro.elephant.entities.db.Related.setDescription ( String  description)

Definition at line 60 of file Related.java.

60  {
61  this.description = description;
62  }
Here is the caller graph for this function:

◆ setDestination()

void org.turro.elephant.entities.db.Related.setDestination ( String  destination)

Definition at line 68 of file Related.java.

68  {
69  this.destination = destination;
70  }
Here is the caller graph for this function:

◆ setOrigin()

void org.turro.elephant.entities.db.Related.setOrigin ( String  origin)

Definition at line 76 of file Related.java.

76  {
77  this.origin = origin;
78  }
Here is the caller graph for this function:

◆ setUnbreakable()

void org.turro.elephant.entities.db.Related.setUnbreakable ( boolean  unbreakable)

Definition at line 84 of file Related.java.

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

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