diff --git a/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DCompositeBase.java b/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DCompositeBase.java index 6ea868c169abe1c14a2a137e68392825bd9e625c..f9a7aee282ede0188381899e4a04807dab56a803 100644 --- a/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DCompositeBase.java +++ b/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DCompositeBase.java @@ -60,14 +60,15 @@ import org.newdawn.slick.Color; * {@link #pickTargetChanged()} method is called whenever the picked object changes. * * @see Graphical3DEditorBase + * Implementation of the 3D Editor in a composite as opposed to the implement in a View + * (Graphical3DViewBase) or editor (Graphical3DEditorBase) in order to be usable within any SWT + * element * - * TODO(VA) This class is almost a copy-paste of {@link Graphical3DViewBase}. - * TODO: Clarify the connection/distinction, potentially factorize * * @author mondal * @author $Author: hoelzl $ * @version $Rev: 15927 $ - * @ConQAT.Rating GREEN Hash: EED1245A9F6C6F6B6DF90FBAD648BD2B + * @ConQAT.Rating YELLOW Hash: C6D7DF2D9670E0829FA7D7ED1AA46367 */ public abstract class Graphical3DCompositeBase<T extends EObject> extends Composite implements MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener, diff --git a/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DViewBase.java b/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DViewBase.java index 879d468e2709ef13c2c928708e000f4f0d5ab91a..b3570d43cee12ee5731e720c123ab98ce25efe27 100644 --- a/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DViewBase.java +++ b/org.fortiss.tooling.graphicsGL.ui/trunk/src/org/fortiss/tooling/graphicsGL/ui/editor/Graphical3DViewBase.java @@ -61,14 +61,14 @@ import org.newdawn.slick.Color; * {@link #pickTargetChanged()} method is called whenever the picked object changes. * * @see Graphical3DEditorBase - * - * TODO(VA) This class is almost a copy-paste of {@link Graphical3DCompositeBase}. - * TODO: Clarify the connection/distinction, potentially factorize + * Implementation of the 3D Editor in a view as opposed to the implement in a composite + * (Graphical3DCompositeBase) or editor (Graphical3DEditorBase) in order to be used out of the + * box as a view. * * @author mondal * @author $Author$ * @version $Rev$ - * @ConQAT.Rating YELLOW Hash: 931F83C3DFFB1E2A8F5C227CBCCBB045 + * @ConQAT.Rating YELLOW Hash: 9CEC73F4AEADA78275881D9D00B50164 */ public abstract class Graphical3DViewBase<T extends EObject> extends ViewPart implements MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener,