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=fd48e6218902772a3d7e157471e7727ecb7e76fd;hpb=74bced7a3a38f65c65f3395cc422eb98e34da0b8;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 fd48e621..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 @@ -140,12 +140,24 @@ public abstract class GUIComponent // 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) {