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