package net.sourceforge.pain.data.prototype;
import net.sourceforge.pain.data.*;
import net.sourceforge.pain.db.*;
/**
* PAiN Date: 29.05.2003 Time: 2:01:35
*/
public abstract class Prototype extends Role {
public Prototype() {
}
public Prototype(PainDB db) {
super(db);
}
public abstract Class getPrototypedRoleClass();
public String getVnum() {
return ((PrototypeInfo) getRole(PrototypeInfo.class)).getVnum();
}
public String toString() {
return "TODO: add toString()";
}
}