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.

23 lines
384 B
Java

package de.unibremen.informatik.hets.protege;
import de.unibremen.informatik.hets.model.HetFile;
public class ImportedHetFile {
static HetFile hetfile;
static {
}
public ImportedHetFile() {
super();
}
public static void setHetFile(HetFile hf) {
hetfile = hf;
}
public static HetFile getHetFile() {
return hetfile;
}
}