From 9a2d3f18de74d15dc9507d124d5d3b62a2a4d53e Mon Sep 17 00:00:00 2001 From: Daniel Kirschten Date: Wed, 15 May 2019 11:47:31 +0200 Subject: [PATCH] Added comments in BasicGUIComponent --- .../era/mi/components/gui/BasicGUIComponent.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/LogicUI/src/era/mi/components/gui/BasicGUIComponent.java b/LogicUI/src/era/mi/components/gui/BasicGUIComponent.java index 92ec7775..f7e7d370 100644 --- a/LogicUI/src/era/mi/components/gui/BasicGUIComponent.java +++ b/LogicUI/src/era/mi/components/gui/BasicGUIComponent.java @@ -6,9 +6,23 @@ import net.haspamelodica.swt.helper.swtobjectwrappers.Point; public interface BasicGUIComponent { + /** + * Render this component to the given gc, at coordinates (0, 0). + */ public void render(GeneralGC gc); + //TODO this code will be replaced by code in BasicComponent. + /** + * Returns how many wire arrays are connected to this component. + * (Connections are static - they can't be removed and no new ones can be added) + */ public int getConnectedWireArraysCount(); + /** + * Returns the n-th wire array connected to this component. + */ public WireArray getConnectedWireArray(int connectionIndex); + /** + * Returns relative coordinates where the n-th wire array is connected to this component. + */ public Point getWireArrayConnectionPoint(int connectionIndex); } \ No newline at end of file -- 2.17.1