Commit 7edffbd4 authored by Patrik Tomov's avatar Patrik Tomov
Browse files

Added getters to ClusterNode

parent 3036398e
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -68,7 +68,6 @@ public class ClusterNode {
        return leafNames;
    }


    public Distance getDistance() {
        return distance;
    }
@@ -76,4 +75,12 @@ public class ClusterNode {
    public void setDistance(Distance distance) {
        this.distance = distance;
    }

    public ClusterNode getParent() {
        return parent;
    }

    public List<ClusterNode> getChildren() {
        return children;
    }
}