Package org.apache.stanbol.ontologymanager.servicesapi.collector

Examples of org.apache.stanbol.ontologymanager.servicesapi.collector.OntologyCollector


        if (!(arg0 instanceof OntologyCollector)) return false;
        if (this == arg0) return true;
        log.warn(
            "{} only implements weak equality, i.e. managed ontologies are only checked by public key, not by content.",
            getClass());
        OntologyCollector coll = (OntologyCollector) arg0;
        return this.getID().equals(coll.getID())
               && this.getDefaultNamespace().equals(coll.getDefaultNamespace())
               && this.listManagedOntologies().equals(coll.listManagedOntologies())
               && this.getSupportedOntologyTypes().equals(coll.getSupportedOntologyTypes());
    }
View Full Code Here

TOP

Related Classes of org.apache.stanbol.ontologymanager.servicesapi.collector.OntologyCollector

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.