Package org.modeshape.jcr.value.NamespaceRegistry

Examples of org.modeshape.jcr.value.NamespaceRegistry.Namespace


    @Override
    public boolean equals( Object obj ) {
        if (obj == this) return true;
        if (obj instanceof Namespace) {
            Namespace that = (Namespace)obj;
            if (!this.namespaceUri.equals(that.getNamespaceUri())) return false;
            // if (!this.prefix.equals(that.getPrefix())) return false;
            return true;
        }
        return false;
    }
View Full Code Here

TOP

Related Classes of org.modeshape.jcr.value.NamespaceRegistry.Namespace

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.