Examples of ConceptVertex


Examples of ru.spbu.math.ontologycomparison.zhukova.visualisation.model.impl.ConceptVertex

            public void run() {
                try {
                    for (SuperVertex vertex : main.getGraphModel().getSuperVertices()) {
                            Set<OWLClass> owlClasses = new HashSet<OWLClass>();
                            for (SimpleVertex simple : vertex.getSimpleVertices()) {
                                ConceptVertex conceptVertex = (ConceptVertex) simple;
                                owlClasses.add(conceptVertex.getConcept().getOWLClass());
                            }
                            OntologyManager.addEquivalentClasses(manager, ontology, owlClasses);
                    }
                    OntologyManager.saveResult(manager, ontology, file);
                    Save.this.main.info(String.format("The merged ontology is saved to %s", file.getAbsolutePath()));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.