All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.ac.manchester.cs.owlapi.dlsyntax.DLSyntaxHTMLOntologyStorerFactory Maven / Gradle / Ivy

/**
 * 
 */
package uk.ac.manchester.cs.owlapi.dlsyntax;

import org.kohsuke.MetaInfServices;
import org.semanticweb.owlapi.formats.DLSyntaxHTMLOntologyFormatFactory;
import org.semanticweb.owlapi.formats.OWLOntologyFormatFactory;
import org.semanticweb.owlapi.model.OWLOntologyStorer;
import org.semanticweb.owlapi.model.OWLOntologyStorerFactory;

/**
 * @author Peter Ansell [email protected]
 *
 */
@MetaInfServices(org.semanticweb.owlapi.model.OWLOntologyStorerFactory.class)
public class DLSyntaxHTMLOntologyStorerFactory implements OWLOntologyStorerFactory
{
    
    /* (non-Javadoc)
     * @see org.semanticweb.owlapi.model.OWLOntologyStorerFactory#createStorer()
     */
    @Override
    public OWLOntologyStorer createStorer() {
        return new DLSyntaxHTMLOntologyStorer();
    }
    
    /* (non-Javadoc)
     * @see org.semanticweb.owlapi.model.OWLOntologyStorerFactory#getFormat()
     */
    @Override
    public OWLOntologyFormatFactory getFormatFactory() {
        return new DLSyntaxHTMLOntologyFormatFactory();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy