Package org.semanticweb.owlapi.formats

Examples of org.semanticweb.owlapi.formats.LatexDocumentFormat


                + "    <owl:Ontology rdf:about=\"http://namespace.owl\"/>\n"
                + "    <owl:Class rdf:about=\"http://namespace.owl#C_Test\"/>"
                + "<owl:ObjectProperty rdf:about=\"http://namespace.owl#p\"/>"
                + "</rdf:RDF>";
        OWLOntology o = loadOntologyFromString(input);
        assertTrue(saveOntology(o, new LatexDocumentFormat()).toString()
                .contains("C\\_Test"));
    }
View Full Code Here

TOP

Related Classes of org.semanticweb.owlapi.formats.LatexDocumentFormat

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.