![JAR search and dependency download from the Maven repository](/logo.png)
org.semanticweb.owlapi.formats.LatexOntologyFormatFactory Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.semanticweb.owlapi.formats;
import java.util.Arrays;
import java.util.List;
import org.kohsuke.MetaInfServices;
/**
* @author Peter Ansell [email protected]
*
*/
@MetaInfServices(org.semanticweb.owlapi.formats.OWLOntologyFormatFactory.class)
public class LatexOntologyFormatFactory extends AbstractOWLOntologyFormatFactory implements OWLOntologyFormatFactory
{
public LatexOntologyFormatFactory()
{
super();
}
@Override
public OWLOntologyFormat getNewFormat()
{
return new LatexOntologyFormat();
}
@Override
public String getKey()
{
return new LatexOntologyFormat().getKey();
}
@Override
public List getMIMETypes()
{
return Arrays.asList("text/x-latex", "application/x-latex", "application/x-tex");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy