protege-hets/src/de/unibremen/informatik/hets/protege/HetCASLOntologyFormat.java
2011-01-17 23:10:11 +02:00

18 lines
No EOL
451 B
Java

package de.unibremen.informatik.hets.protege;
import org.coode.owlapi.manchesterowlsyntax.ManchesterOWLSyntaxOntologyFormat;
public class HetCASLOntologyFormat extends ManchesterOWLSyntaxOntologyFormat {
public HetCASLOntologyFormat() {
setDefaultPrefix("http://informatik.uni-bremen.de/hets#");
}
public HetCASLOntologyFormat(String prefix) {
setDefaultPrefix(prefix);
}
public String toString() {
return "HetCASL";
}
}