org.semanticweb.owlapi.formats.KRSSOntologyFormatFactory 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 KRSSOntologyFormatFactory extends AbstractOWLOntologyFormatFactory implements OWLOntologyFormatFactory
{
public KRSSOntologyFormatFactory()
{
super();
}
@Override
public OWLOntologyFormat getNewFormat()
{
return new KRSSOntologyFormat();
}
@Override
public String getKey()
{
return new KRSSOntologyFormat().getKey();
}
@Override
public List getMIMETypes()
{
return Collections.emptyList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy