BrightSide Workbench Full Report + Source Code
org.turro.attach.entity.EntityDocumentationPK Class Reference
Inheritance diagram for org.turro.attach.entity.EntityDocumentationPK:
Collaboration diagram for org.turro.attach.entity.EntityDocumentationPK:

Public Member Functions

String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getContactId ()
 
void setContactId (String contactId)
 
String getDocumentation ()
 
void setDocumentation (String documentation)
 
int hashCode ()
 
boolean equals (Object obj)
 

Detailed Description

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

Definition at line 28 of file EntityDocumentationPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.attach.entity.EntityDocumentationPK.equals ( Object  obj)

Definition at line 68 of file EntityDocumentationPK.java.

68  {
69  if (this == obj) {
70  return true;
71  }
72  if (obj == null) {
73  return false;
74  }
75  if (getClass() != obj.getClass()) {
76  return false;
77  }
78  final EntityDocumentationPK other = (EntityDocumentationPK) obj;
79  if (!Objects.equals(this.entityPath, other.entityPath)) {
80  return false;
81  }
82  if (!Objects.equals(this.contactId, other.contactId)) {
83  return false;
84  }
85  return Objects.equals(this.documentation, other.documentation);
86  }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getContactId()

String org.turro.attach.entity.EntityDocumentationPK.getContactId ( )

Definition at line 42 of file EntityDocumentationPK.java.

42  {
43  return contactId;
44  }

◆ getDocumentation()

String org.turro.attach.entity.EntityDocumentationPK.getDocumentation ( )

Definition at line 50 of file EntityDocumentationPK.java.

50  {
51  return documentation;
52  }

◆ getEntityPath()

String org.turro.attach.entity.EntityDocumentationPK.getEntityPath ( )

Definition at line 34 of file EntityDocumentationPK.java.

34  {
35  return entityPath;
36  }

◆ hashCode()

int org.turro.attach.entity.EntityDocumentationPK.hashCode ( )

Definition at line 59 of file EntityDocumentationPK.java.

59  {
60  int hash = 5;
61  hash = 37 * hash + Objects.hashCode(this.entityPath);
62  hash = 37 * hash + Objects.hashCode(this.contactId);
63  hash = 37 * hash + Objects.hashCode(this.documentation);
64  return hash;
65  }

◆ setContactId()

void org.turro.attach.entity.EntityDocumentationPK.setContactId ( String  contactId)

Definition at line 46 of file EntityDocumentationPK.java.

46  {
47  this.contactId = contactId;
48  }
Here is the caller graph for this function:

◆ setDocumentation()

void org.turro.attach.entity.EntityDocumentationPK.setDocumentation ( String  documentation)

Definition at line 54 of file EntityDocumentationPK.java.

54  {
55  this.documentation = documentation;
56  }
Here is the caller graph for this function:

◆ setEntityPath()

void org.turro.attach.entity.EntityDocumentationPK.setEntityPath ( String  entityPath)

Definition at line 38 of file EntityDocumentationPK.java.

38  {
39  this.entityPath = entityPath;
40  }
Here is the caller graph for this function:

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