Implemented some high level state handlers; changed standard snippet IDs
[Mograsim.git] / net.mograsim.logic.model / src / net / mograsim / logic / model / snippets / highlevelstatehandlers / standard / HighLevelStateHandlerContext.java
index c5f8f13..ba3ae19 100644 (file)
@@ -1,13 +1,13 @@
 package net.mograsim.logic.model.snippets.highlevelstatehandlers.standard;
 
-import net.mograsim.logic.model.model.components.GUIComponent;
+import net.mograsim.logic.model.model.components.submodels.SubmodelComponent;
 
 public class HighLevelStateHandlerContext
 {
-       public final GUIComponent component;
+       public final SubmodelComponent component;
        public final String stateID;
 
-       public HighLevelStateHandlerContext(GUIComponent component, String stateID)
+       public HighLevelStateHandlerContext(SubmodelComponent component, String stateID)
        {
                this.component = component;
                this.stateID = stateID;