You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
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";
}
}