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

Public Member Functions

String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getSiblingPath ()
 
void setSiblingPath (String siblingPath)
 
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 SiblingsTuplePK.java.

Member Function Documentation

◆ equals()

boolean org.turro.matching.SiblingsTuplePK.equals ( Object  obj)

Definition at line 58 of file SiblingsTuplePK.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 SiblingsTuplePK other = (SiblingsTuplePK) obj;
69  if (!Objects.equals(this.entityPath, other.entityPath)) {
70  return false;
71  }
72  if (!Objects.equals(this.siblingPath, other.siblingPath)) {
73  return false;
74  }
75  return true;
76  }

◆ getEntityPath()

String org.turro.matching.SiblingsTuplePK.getEntityPath ( )

Definition at line 33 of file SiblingsTuplePK.java.

33  {
34  return entityPath;
35  }

◆ getSiblingPath()

String org.turro.matching.SiblingsTuplePK.getSiblingPath ( )

Definition at line 41 of file SiblingsTuplePK.java.

41  {
42  return siblingPath;
43  }

◆ hashCode()

int org.turro.matching.SiblingsTuplePK.hashCode ( )

Definition at line 50 of file SiblingsTuplePK.java.

50  {
51  int hash = 7;
52  hash = 47 * hash + Objects.hashCode(this.entityPath);
53  hash = 47 * hash + Objects.hashCode(this.siblingPath);
54  return hash;
55  }

◆ setEntityPath()

void org.turro.matching.SiblingsTuplePK.setEntityPath ( String  entityPath)

Definition at line 37 of file SiblingsTuplePK.java.

37  {
38  this.entityPath = entityPath;
39  }

◆ setSiblingPath()

void org.turro.matching.SiblingsTuplePK.setSiblingPath ( String  siblingPath)

Definition at line 45 of file SiblingsTuplePK.java.

45  {
46  this.siblingPath = siblingPath;
47  }

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