19 package org.turro.matching;
21 import org.turro.path.Path;
29 private String entityPath;
30 private String relatedPath;
31 private String concept;
32 private double matching;
34 public GenericMatching(String entityPath, String relatedPath, String concept,
double matching) {
35 this.entityPath = entityPath;
36 this.relatedPath = relatedPath;
37 this.concept = concept;
38 this.matching = matching;
41 public GenericMatching(String entityPath, String relatedPath, String concept,
long matching) {
42 this.entityPath = entityPath;
43 this.relatedPath = relatedPath;
44 this.concept = concept;
45 this.matching = matching;
70 this.entityPath = entityPath;
75 this.relatedPath = relatedPath;
80 this.concept = concept;
85 this.matching = matching;
89 Path path =
new Path(entityPath);
91 path =
new Path(relatedPath);
95 return matchingEntity;
IMatching copyTo(IMatching matchingEntity)
void setRelatedPath(String relatedPath)
GenericMatching(String entityPath, String relatedPath, String concept, double matching)
void setConcept(String concept)
void setMatching(double matching)
void setEntityPath(String entityPath)
GenericMatching(String entityPath, String relatedPath, String concept, long matching)
void setRelatedPath(String relatedPath)
void setConcept(String concept)
void setMatching(double value)
void setEntityPath(String entityPath)