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

org.semanticweb.owlapi.formats.KRSS2OntologyFormatFactory 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 KRSS2OntologyFormatFactory extends AbstractOWLOntologyFormatFactory implements OWLOntologyFormatFactory
{
    public KRSS2OntologyFormatFactory()
    {
        super();
    }
    
    @Override
    public OWLOntologyFormat getNewFormat()
    {
        return new KRSS2OntologyFormat();
    }
    
    @Override
    public String getKey()
    {
        return new KRSS2OntologyFormat().getKey();
    }

    @Override
    public List getMIMETypes()
    {
        return Collections.emptyList();
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy