Package org.semanticweb.owlapi.formats

Examples of org.semanticweb.owlapi.formats.OWLXMLDocumentFormatFactory


    private static final long serialVersionUID = 40000L;

    /** default constructor */
    public OWLXMLStorerFactory() {
        super(new OWLXMLDocumentFormatFactory());
    }
View Full Code Here


        return "OWLXMLParser";
    }

    @Override
    public OWLDocumentFormatFactory getSupportedFormat() {
        return new OWLXMLDocumentFormatFactory();
    }
View Full Code Here

    private static final long serialVersionUID = 40000L;

    /** default constructor */
    public OWLXMLParserFactory() {
        super(new OWLXMLDocumentFormatFactory());
    }
View Full Code Here

        assertNull(f.getDefaultMIMEType());
    }

    @Test
    public void testOWLXMLOntologyFormat() {
        OWLDocumentFormatFactory f = new OWLXMLDocumentFormatFactory();
        assertEquals("OWL/XML Syntax", f.getKey());
        assertEquals(0, f.getMIMETypes().size());
        assertNull(f.getDefaultMIMEType());
    }
View Full Code Here

TOP

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

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.