import com.osm.biz.*; import com.osm.project.biz.*; /** Meine tolle StateFlow-Klasse. */ public class meineStateFlowKlasse extends DTStateflow { /** Konstruktor */ public meineStateFlowKlasse (WMSession theSession, int theHandle) { super(theSession, theHandle); } /** Sollen Elemente dieser Klasse im ModelManager änderbar sein? -> ja!!! */ public boolean isEditable () { return true; } }