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.

32 lines
622 B
Java

package de.unibremen.informatik.hets.model;
import org.semanticweb.owlapi.model.OWLOntologyManager;
public class Spec {
protected String annotation;
protected String content;
public Spec(String cont, String anno) {
content = cont;
annotation = anno;
}
public Spec(String cont) {
content = cont;
annotation = null;
}
public Spec() {
content = null;
annotation = null;
}
public String toString(OWLOntologyManager ontologymanager) {
return content;
}
public String getAnnotation() {
return annotation;
}
}