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

org.coode.owlapi.obo12.parser.OBO12DocumentFormatFactory Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
package org.coode.owlapi.obo12.parser;

import org.semanticweb.owlapi.model.OWLDocumentFormat;
import org.semanticweb.owlapi.util.OWLDocumentFormatFactoryImpl;

@SuppressWarnings("javadoc")
public class OBO12DocumentFormatFactory extends OWLDocumentFormatFactoryImpl {

    private static final long serialVersionUID = 40000L;

    @Override
    public OWLDocumentFormat get() {
        return createFormat();
    }

    @Override
    public String getKey() {
        return "OBO 1.2 Format";
    }

    @Override
    public OWLDocumentFormat createFormat() {
        return new OBO12DocumentFormat();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy