X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2FGUIComponent.java;h=f961cafc16269553f5a76c032c7f944c229b0e43;hb=64031e27d6b607e5475d081f93581960ef5a82b4;hp=6e566c48dda107d79cfa6990b2c8d69ae2c6224c;hpb=5409a6e27afdeb1c318bd185e43b476a360625c7;p=Mograsim.git diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java index 6e566c48..f961cafc 100644 --- a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java +++ b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/GUIComponent.java @@ -138,6 +138,32 @@ public abstract class GUIComponent return pin; } + // high-level access + + /** + * Sets the given high-level state to the given value.
+ * TODO more documentation! + * + * @author Daniel Kirschten + */ + @SuppressWarnings({ "static-method", "unused" }) // this method is intended to be overridden + public void setHighLevelState(String stateID, Object newState) + { + throw new IllegalArgumentException("No high level state with ID " + stateID); + } + + /** + * Gets the current value of the given high-level state.
+ * TODO more documentation! + * + * @author Daniel Kirschten + */ + @SuppressWarnings("static-method") // this method is intended to be overridden + public Object getHighLevelState(String stateID) + { + throw new IllegalArgumentException("No high level state with ID " + stateID); + } + // "graphical" operations /**