X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.databoard%2Fsrc%2Forg%2Fsimantics%2Fdataboard%2Faccessor%2Freference%2FNameReference.java;h=0e542f59cb9be013d11f93ebc84a495d32734d67;hb=39508c529ed6dce08d4ca505c9518e3e82fd6efa;hp=ff134a7611a5c30ab320eda354f71555f97556db;hpb=969bd23cab98a79ca9101af33334000879fb60c5;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/reference/NameReference.java b/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/reference/NameReference.java index ff134a761..0e542f59c 100644 --- a/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/reference/NameReference.java +++ b/bundles/org.simantics.databoard/src/org/simantics/databoard/accessor/reference/NameReference.java @@ -1,20 +1,20 @@ -/******************************************************************************* - * Copyright (c) 2010 Association for Decentralized Information Management in - * Industry THTH ry. - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: - * VTT Technical Research Centre of Finland - initial API and implementation - *******************************************************************************/ +/******************************************************************************* + * Copyright (c) 2010 Association for Decentralized Information Management in + * Industry THTH ry. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ package org.simantics.databoard.accessor.reference; - -import org.simantics.databoard.util.URIUtil; + +import org.simantics.databoard.util.URIUtil; -/** +/** * Reference by name to a record field. * Format: "n-" * @@ -36,35 +36,35 @@ public class NameReference extends ChildReference { public String getName() { return name; } - - @Override - public String toString(boolean labelReference) { - if (labelReference && (name.equals("uv") || name.equals("o") || name.equals("v"))) labelReference = false; - String encoded = URIUtil.encodeURI(name); - return labelReference ? encoded : "n-"+encoded; - } + + @Override + public String toString(boolean labelReference) { + if (labelReference && (name.equals("uv") || name.equals("o") || name.equals("v"))) labelReference = false; + String encoded = URIUtil.encodeURI(name); + return labelReference ? encoded : "n-"+encoded; + } @Override public ChildReference clone() { return new NameReference(name, childReference==null ? null : childReference.clone()); - } - - @Override - public boolean equals(Object obj) { - if (obj instanceof NameReference == false) return false; - NameReference other = (NameReference) obj; - if (!other.name.equals(name)) return false; - if (other.hasChildReference() != hasChildReference()) return false; - if (hasChildReference() && !other.childReference.equals(childReference)) return false; - return true; - } - - @Override - public int hashCode() { - int hash = 4665456 + 37 * name.hashCode(); - if (hasChildReference()) hash = 31*hash + childReference.hashCode(); - return hash; - } + } + + @Override + public boolean equals(Object obj) { + if (obj instanceof NameReference == false) return false; + NameReference other = (NameReference) obj; + if (!other.name.equals(name)) return false; + if (other.hasChildReference() != hasChildReference()) return false; + if (hasChildReference() && !other.childReference.equals(childReference)) return false; + return true; + } + + @Override + public int hashCode() { + int hash = 4665456 + 37 * name.hashCode(); + if (hasChildReference()) hash = 31*hash + childReference.hashCode(); + return hash; + } }