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

Public Member Functions

String getTagName ()
 
void setTagName (String tagName)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
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 TagPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.elephant.entities.db.TagPK.equals ( Object  obj)

Definition at line 58 of file TagPK.java.

58  {
59  if (this == obj) {
60  return true;
61  }
62  if (obj == null) {
63  return false;
64  }
65  if (getClass() != obj.getClass()) {
66  return false;
67  }
68  final TagPK other = (TagPK) obj;
69  if (!Objects.equals(this.tagName, other.tagName)) {
70  return false;
71  }
72  if (!Objects.equals(this.entityPath, other.entityPath)) {
73  return false;
74  }
75  return true;
76  }

◆ getEntityPath()

String org.turro.elephant.entities.db.TagPK.getEntityPath ( )

Definition at line 41 of file TagPK.java.

41  {
42  return entityPath;
43  }

◆ getTagName()

String org.turro.elephant.entities.db.TagPK.getTagName ( )

Definition at line 33 of file TagPK.java.

33  {
34  return tagName;
35  }

◆ hashCode()

int org.turro.elephant.entities.db.TagPK.hashCode ( )

Definition at line 50 of file TagPK.java.

50  {
51  int hash = 5;
52  hash = 29 * hash + Objects.hashCode(this.tagName);
53  hash = 29 * hash + Objects.hashCode(this.entityPath);
54  return hash;
55  }

◆ setEntityPath()

void org.turro.elephant.entities.db.TagPK.setEntityPath ( String  entityPath)

Definition at line 45 of file TagPK.java.

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

◆ setTagName()

void org.turro.elephant.entities.db.TagPK.setTagName ( String  tagName)

Definition at line 37 of file TagPK.java.

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

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