All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.webdav.dom.QualifiedNameImpl Maven / Gradle / Ivy

Go to download

We build this plugin because eclipse no longer distributes it and Guvnor tools needs it.

There is a newer version: 7.48.0.Final
Show newest version
package org.eclipse.webdav.dom;

import org.eclipse.webdav.Policy;

/**
 * Qualified names are two-part names: qualifier and local name.
 * The qualifier must be in URI form (see RFC2396).  
 * Note however that the qualifier may be null if
 * the default name space is being used.  The empty space is
 * not a valid qualifier.
 * 

* Note: This class/interface is part of an interim API that is still under * development and expected to change significantly before reaching stability. * It is being made available at this early stage to solicit feedback from pioneering * adopters on the understanding that any code that uses this API will almost * certainly be broken (repeatedly) as the API evolves. *

*/ public class QualifiedNameImpl implements QualifiedName { /** Qualifier part (potentially null). */ protected String qualifier = null; /** Local name part. */ protected String localName = null; /** * Creates and returns a new qualified name with the given qualifier * and local name. The local name must not be the empty string. * The qualifier may be null. */ public QualifiedNameImpl(String qualifier, String localName) { Assert.isTrue(localName != null && localName.length() != 0); this.qualifier = qualifier; this.localName = localName; } /** * Returns true if this qualified name is equivalent to the given object. *

* Qualified names are equal if and only if they have the same * qualified parts and local parts. * Qualified names are not equal to objects other than qualified names. */ public boolean equals(Object obj) { if (obj == this) return true; if (!(obj instanceof QualifiedName)) return false; // There may or may not be a qualifier. QualifiedName qName = (QualifiedName) obj; if (qualifier == null && qName.getQualifier() != null) return false; if (qualifier != null && !qualifier.equals(qName.getQualifier())) return false; return localName.equals(qName.getLocalName()); } /** * Returns the local part of this name. */ public String getLocalName() { return localName; } /** * Returns the qualifier part for this qualifed name, or null * if none. */ public String getQualifier() { return qualifier; } /** * Returns the hash code for this qualified name. */ public int hashCode() { return (qualifier == null ? 0 : qualifier.hashCode()) + localName.hashCode(); } /** * Converts this qualified name into a string, suitable for * display (unsuitable for parsing back to a qualified name!). */ public String toString() { return Policy.bind("qualifiedNameImpl.namespace") + ": \"" + //$NON-NLS-1$ //$NON-NLS-2$ (getQualifier() == null ? "null" : getQualifier()) + //$NON-NLS-1$ "\", " + Policy.bind("qualifiedNameImpl.localPart") + ": \"" + //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ getLocalName() + "\""; //$NON-NLS-1$ } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy