X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.graph%2Fsrc%2Forg%2Fsimantics%2Fgraph%2Fquery%2FPathRoot.java;h=1495b0047b5d5da27abaf3c0acace95d949b768d;hb=97b19fb4626dd2a78d52a3e575f7252b67a56787;hp=31b92c74e6f1b344adc63018a98845a700e19552;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.graph/src/org/simantics/graph/query/PathRoot.java b/bundles/org.simantics.graph/src/org/simantics/graph/query/PathRoot.java index 31b92c74e..1495b0047 100644 --- a/bundles/org.simantics.graph/src/org/simantics/graph/query/PathRoot.java +++ b/bundles/org.simantics.graph/src/org/simantics/graph/query/PathRoot.java @@ -1,56 +1,56 @@ -package org.simantics.graph.query; - -public class PathRoot implements Path { - public final String name; - - public PathRoot(String name) { - this.name = name; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((name == null) ? 0 : name.hashCode()); - return result; - } - - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - PathRoot other = (PathRoot) obj; - if (name == null) { - if (other.name != null) - return false; - } else if (!name.equals(other.name)) - return false; - return true; - } - - @Override - public String toString() { - if(name.isEmpty()) - return "http:/"; - else - return name; - } - - @Override - public void toString(StringBuilder b) { - if(name.isEmpty()) - b.append("http:/"); - else - b.append(name); - } - - @Override - public Path child(String childName) { - return new PathChild(childName, this); - } -} +package org.simantics.graph.query; + +public class PathRoot implements Path { + public final String name; + + public PathRoot(String name) { + this.name = name; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((name == null) ? 0 : name.hashCode()); + return result; + } + + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + PathRoot other = (PathRoot) obj; + if (name == null) { + if (other.name != null) + return false; + } else if (!name.equals(other.name)) + return false; + return true; + } + + @Override + public String toString() { + if(name.isEmpty()) + return "http:/"; + else + return name; + } + + @Override + public void toString(StringBuilder b) { + if(name.isEmpty()) + b.append("http:/"); + else + b.append(name); + } + + @Override + public Path child(String childName) { + return new PathChild(childName, this); + } +}