The final restructured version for automatic build using maven tycho
[Mograsim.git] / net.mograsim.logic.model / src / net / mograsim / logic / model / snippets / highlevelstatehandlers / standard / subcomponent / SubcomponentHighLevelStateHandler.java
diff --git a/net.mograsim.logic.model/src/net/mograsim/logic/model/snippets/highlevelstatehandlers/standard/subcomponent/SubcomponentHighLevelStateHandler.java b/net.mograsim.logic.model/src/net/mograsim/logic/model/snippets/highlevelstatehandlers/standard/subcomponent/SubcomponentHighLevelStateHandler.java
deleted file mode 100644 (file)
index 4c82bdc..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-package net.mograsim.logic.model.snippets.highlevelstatehandlers.standard.subcomponent;
-
-import com.google.gson.JsonElement;
-
-import net.mograsim.logic.model.serializing.JSONSerializable;
-import net.mograsim.logic.model.snippets.HighLevelStateHandler;
-
-public interface SubcomponentHighLevelStateHandler extends JSONSerializable
-{
-       /**
-        * Gets the current value of the given high level state of the subcomponent represented by this SubcomponentHighLevelStateHandler.<br>
-        * See {@link HighLevelStateHandler} for an explanation of high-level state IDs.
-        * 
-        * @author Daniel Kirschten
-        */
-       public Object getHighLevelState(String subStateID);
-
-       /**
-        * Sets the given high level state of the subcomponent represented by this SubcomponentHighLevelStateHandler to the given value.<br>
-        * See {@link HighLevelStateHandler} for an explanation of high-level state IDs.
-        * 
-        * @author Daniel Kirschten
-        */
-       public void setHighLevelState(String subStateID, Object newState);
-
-       public static class SubcomponentHighLevelStateHandlerParams
-       {
-               public String id;
-               public JsonElement params;
-       }
-}
\ No newline at end of file