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

Public Member Functions

 GenericSiblings (String entityPath, String siblingPath)
 
String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getSiblingPath ()
 
void setSiblingPath (String siblingPath)
 
ISiblingsTuple copyTo (ISiblingsTuple siblings)
 

Detailed Description

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

Definition at line 27 of file GenericSiblings.java.

Constructor & Destructor Documentation

◆ GenericSiblings()

org.turro.matching.GenericSiblings.GenericSiblings ( String  entityPath,
String  siblingPath 
)

Definition at line 32 of file GenericSiblings.java.

32  {
33  this.entityPath = entityPath;
34  this.siblingPath = siblingPath;
35  }

Member Function Documentation

◆ copyTo()

ISiblingsTuple org.turro.matching.GenericSiblings.copyTo ( ISiblingsTuple  siblings)

Definition at line 57 of file GenericSiblings.java.

57  {
58  Path path = new Path(entityPath);
59  siblings.setEntityPath(path.getTill(2));
60  path = new Path(siblingPath);
61  siblings.setSiblingPath(path.getTill(2));
62  return siblings;
63  }
Here is the call graph for this function:

◆ getEntityPath()

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

Implements org.turro.matching.ISiblingsTuple.

Definition at line 38 of file GenericSiblings.java.

38  {
39  return entityPath;
40  }

◆ getSiblingPath()

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

Implements org.turro.matching.ISiblingsTuple.

Definition at line 48 of file GenericSiblings.java.

48  {
49  return siblingPath;
50  }

◆ setEntityPath()

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

Implements org.turro.matching.ISiblingsTuple.

Definition at line 43 of file GenericSiblings.java.

43  {
44  this.entityPath = entityPath;
45  }

◆ setSiblingPath()

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

Implements org.turro.matching.ISiblingsTuple.

Definition at line 53 of file GenericSiblings.java.

53  {
54  this.siblingPath = siblingPath;
55  }

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