示例#1
0
 @Override
 public int hashCode() {
   final int prime = 31;
   int result = 1;
   result = prime * result + path.hashCode();
   result = prime * result + type.hashCode();
   return result;
 }
示例#2
0
 @Override
 public boolean equals(Object obj) {
   if (this == obj) return true;
   if (obj == null) return false;
   if (getClass() != obj.getClass()) return false;
   PathNode other = (PathNode) obj;
   if (!path.equals(other.path)) return false;
   if (!type.equals(other.type)) return false;
   return true;
 }
示例#3
0
 @Override
 public String toString() {
   return type.name() + ": " + path.toString(); // $NON-NLS-1$
 }