X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=net.mograsim.logic.ui%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2FViewModel.java;h=55402c240b3cc235d320243f6bced9ee7d0405e0;hb=f2d9d6040e8573217ca7588ff56d532eea6b6df2;hp=1f69acf3e67fee2e148c7301995ba5da0f4e9d6b;hpb=e690a7e69378a8c1090f83e85dd76eb8b0e6c533;p=Mograsim.git diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/ViewModel.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/ViewModel.java index 1f69acf3..55402c24 100644 --- a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/ViewModel.java +++ b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/ViewModel.java @@ -41,7 +41,7 @@ public class ViewModel /** * Adds the given component to the list of components and calls all componentAddedListeners. Don't call this method from application - * code as it is automatically called in GUIComponent::new. + * code as it is automatically called in {@link GUIComponent}'s constructor. */ protected void componentCreated(GUIComponent component) { @@ -55,7 +55,7 @@ public class ViewModel /** * Removes the given component from the list of components and calls all componentRemovedListeners. Don't call this method from - * application code as it is automatically called in GUIComponent::destroy. + * application code as it is automatically called in {@link GUIComponent#destroy()}. */ protected void componentDestroyed(GUIComponent component) { @@ -69,7 +69,7 @@ public class ViewModel /** * Adds the given wire to the list of wires and calls all wireAddedListeners. Don't call this method from application code as it is - * automatically called in GUIWire::new. + * automatically called in {@link GUIWire}'s constructor(s). */ protected void wireCreated(GUIWire wire) { @@ -83,7 +83,7 @@ public class ViewModel /** * Removes the given wire from the list of wires and calls all wireRemovedListeners. Don't call this method from application code as it - * is automatically called in GUIWire::destroy. + * is automatically called in {@link GUIWire#destroy()}. */ protected void wireDestroyed(GUIWire wire) {