Package org.semanticweb.owl.util

Examples of org.semanticweb.owl.util.OWLDescriptionVisitorAdapter



    private Set<OWLDescription> getDescriptions(OWLDescription desc) {
        final Set<OWLDescription> result = new HashSet<OWLDescription>();
        if (splitIntersections) {
            desc.accept(new OWLDescriptionVisitorAdapter() {

                public void visit(OWLObjectIntersectionOf desc) {
                    for (OWLDescription op : desc.getOperands()) {
                        result.add(op);
                    }
View Full Code Here

TOP

Related Classes of org.semanticweb.owl.util.OWLDescriptionVisitorAdapter

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.