org.semanticweb.owlapi.formats.DLSyntaxOntologyFormatFactory Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.semanticweb.owlapi.formats;
import java.util.Collections;
import java.util.List;
import org.kohsuke.MetaInfServices;
/**
* @author Peter Ansell [email protected]
*
*/
@MetaInfServices(org.semanticweb.owlapi.formats.OWLOntologyFormatFactory.class)
public class DLSyntaxOntologyFormatFactory extends AbstractOWLOntologyFormatFactory implements OWLOntologyFormatFactory
{
public DLSyntaxOntologyFormatFactory()
{
super();
}
@Override
public OWLOntologyFormat getNewFormat()
{
return new DLSyntaxOntologyFormat();
}
@Override
public String getKey()
{
return new DLSyntaxOntologyFormat().getKey();
}
@Override
public List getMIMETypes()
{
return Collections.emptyList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy