Skip to content
Snippets Groups Projects
Commit 73e5daef authored by Sudeep Kanav's avatar Sudeep Kanav
Browse files

ratings migrated

refs 3177
parent 7e265724
No related branches found
No related tags found
No related merge requests found
Showing
with 30 additions and 14 deletions
ToolingGraphicsGLUIActivator.java 43d418a5238a0ef04372554d5206f3392744b576 GREEN
package.html 4e7ae12b58dccd03efdfca4e1cd2ba318929ef23 GREEN
...@@ -27,7 +27,6 @@ import org.osgi.framework.BundleContext; ...@@ -27,7 +27,6 @@ import org.osgi.framework.BundleContext;
* The activator class controls the plug-in life cycle. * The activator class controls the plug-in life cycle.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 8B45D85BABEAD9E050442F315CC91115
*/ */
public class ToolingGraphicsGLUIActivator extends AbstractUIPlugin { public class ToolingGraphicsGLUIActivator extends AbstractUIPlugin {
......
.ratings c0af772f5a460d2a1b4362b81180ac0fe751ef92 GREEN
Camera.java c24e1c4acfccde6fba80be3c34cadc300635486a GREEN
MovingCameraWithPitchAndYaw.java 63e50dbeca1edd8a84cbec5f61175fd546f7d22a GREEN
package.html b48bb410c5a663ae93c170b81c444c529255f1a1 GREEN
...@@ -23,7 +23,6 @@ import org.lwjglx.util.vector.Vector3f; ...@@ -23,7 +23,6 @@ import org.lwjglx.util.vector.Vector3f;
* Class representing the camera with the Z axis as up vector. * Class representing the camera with the Z axis as up vector.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 92D57E59EF51CD2303465A004B6F6AFE
*/ */
public class Camera { public class Camera {
......
...@@ -31,7 +31,6 @@ import static org.fortiss.tooling.graphicsGL.ui.util.GLPrimitives.translate; ...@@ -31,7 +31,6 @@ import static org.fortiss.tooling.graphicsGL.ui.util.GLPrimitives.translate;
* This camera does not support setting the target location directly. * This camera does not support setting the target location directly.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 1B3278814179BC357FB550B79745922F
*/ */
public class MovingCameraWithPitchAndYaw extends Camera { public class MovingCameraWithPitchAndYaw extends Camera {
......
.ratings 9502d5456f1c5e5cbeb86e1012ed799e3379284a GREEN
LwjglCanvas.java 087594c2e420657d36bcf64873d1c5046ff5773e GREEN
LwjglRenderThread.java 5d3b391e2d656ae3dcee40cb075e3db9cc695f9c GREEN
package.html e529a1ade1452175d38e9d65f18629a585298a69 GREEN
...@@ -41,7 +41,6 @@ import org.newdawn.slick.TrueTypeFont; ...@@ -41,7 +41,6 @@ import org.newdawn.slick.TrueTypeFont;
* stores the true type font instance from slick utilities. * stores the true type font instance from slick utilities.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: FFCEE98593AEFA7829436F7961C8F25A
*/ */
@SuppressWarnings("deprecation") @SuppressWarnings("deprecation")
public class LwjglCanvas extends GLCanvas { public class LwjglCanvas extends GLCanvas {
......
...@@ -24,7 +24,6 @@ import static org.eclipse.ui.PlatformUI.getWorkbench; ...@@ -24,7 +24,6 @@ import static org.eclipse.ui.PlatformUI.getWorkbench;
* is visible. * is visible.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: EC035BA669B676BD379E9BF40EA4A006
*/ */
public class LwjglRenderThread extends Thread { public class LwjglRenderThread extends Thread {
......
.ratings a93a50ebaf49717044df52eef8e838ebae9cec37 GREEN
EditorStatusBarItem.java 599335e07334ff5f8ab3d505faa6288065dfac4c GREEN
Graphical3DCompositeBase.java c2ea6481d441ce999344c085e79d8fe0ed689e7b YELLOW
Graphical3DEditorBase.java a6ac307275aaa265ef508ce51982534e924863e0 GREEN
Graphical3DViewBase.java 34ffd3d8794f2d89130e55bf1f5e0cb6415dedbc YELLOW
package.html 5feabdab5dc2e6fc20d5ee30ba097f0cda2e0889 GREEN
...@@ -26,7 +26,6 @@ import org.eclipse.swt.widgets.Label; ...@@ -26,7 +26,6 @@ import org.eclipse.swt.widgets.Label;
* Status bar for the {@link Graphical3DEditorBase}. * Status bar for the {@link Graphical3DEditorBase}.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: B36015184F6B18DA4C21B28761A40EBF
*/ */
public class EditorStatusBarItem extends ContributionItem { public class EditorStatusBarItem extends ContributionItem {
......
...@@ -64,7 +64,6 @@ import org.newdawn.slick.Color; ...@@ -64,7 +64,6 @@ import org.newdawn.slick.Color;
* *
* *
* @author mondal * @author mondal
* @ConQAT.Rating YELLOW Hash: C6D7DF2D9670E0829FA7D7ED1AA46367
*/ */
public abstract class Graphical3DCompositeBase<T extends EObject> extends Composite implements public abstract class Graphical3DCompositeBase<T extends EObject> extends Composite implements
MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener, MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener,
......
...@@ -60,7 +60,6 @@ import org.newdawn.slick.Color; ...@@ -60,7 +60,6 @@ import org.newdawn.slick.Color;
* {@link #pickTargetChanged()} method is called whenever the picked object changes. * {@link #pickTargetChanged()} method is called whenever the picked object changes.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 02D9989C419B006F0A5783EFCB85C47E
*/ */
public abstract class Graphical3DEditorBase<T extends EObject> extends EditorBase<T> implements public abstract class Graphical3DEditorBase<T extends EObject> extends EditorBase<T> implements
MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener, MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener,
......
...@@ -64,7 +64,6 @@ import org.newdawn.slick.Color; ...@@ -64,7 +64,6 @@ import org.newdawn.slick.Color;
* box as a view. * box as a view.
* *
* @author mondal * @author mondal
* @ConQAT.Rating YELLOW Hash: 9CEC73F4AEADA78275881D9D00B50164
*/ */
public abstract class Graphical3DViewBase<T extends EObject> extends ViewPart implements public abstract class Graphical3DViewBase<T extends EObject> extends ViewPart implements
MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener, MouseListener, MouseTrackListener, MouseMoveListener, MouseWheelListener, KeyListener,
......
.ratings bdc1d4b1a4655e6d72bf6ea0a77f47515a13b986 GREEN
Light.java 98167cba3f116bf822f0abfc869ac8e9a8d0b61a GREEN
Light3DLight.java 8471120e5c7c1f19f52e4052e324884d8d8a01f4 GREEN
package.html 7775995785d43f1bb626c0b69547a29ee23bfb93 GREEN
...@@ -33,7 +33,6 @@ import org.fortiss.tooling.graphicsGL.ui.util.GLPrimitives; ...@@ -33,7 +33,6 @@ import org.fortiss.tooling.graphicsGL.ui.util.GLPrimitives;
* Specular light is set to white. The default is a point light source at (1,1,1). * Specular light is set to white. The default is a point light source at (1,1,1).
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: ECADD466498BDD13DEA0E2E71E07ED5A
*/ */
public class Light { public class Light {
......
...@@ -24,7 +24,6 @@ import org.fortiss.tooling.graphicsGL.ui.util.GLPrimitives; ...@@ -24,7 +24,6 @@ import org.fortiss.tooling.graphicsGL.ui.util.GLPrimitives;
* Class representing a light source based on the model object of class {@link Light3D}. * Class representing a light source based on the model object of class {@link Light3D}.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 419E574748A416756B1587B03C14F918
*/ */
public class Light3DLight { public class Light3DLight {
......
.ratings e87114fb43d3883dd3237948def1bede5e673382 GREEN
CompositeViewObject.java 879fc2f6979666d0aee80dce656b488589fed9d1 GREEN
Graph3DViewObject.java 2ab8d5c1f3ed2212351b873c58157b8815a02969 GREEN
Object3DViewObject.java 2479550fe19cc64cd6ea28585bb1f75840b06109 GREEN
PickableObjectBase.java 8bc5f3b543b26fa0e6b28a63ca9520589bad252b GREEN
RotatedObject.java f2e75c5aea9d128371c86fa3a449052390c76d54 GREEN
ScaledObject.java 59fa121e54e5b4be689714b2ee6f0972ae5d6497 GREEN
ViewObjectBase.java 2fbcf09f17655c06abffaeb00dbc558e711404eb GREEN
WrappedViewObjectBase.java bb499adfc59ecb43c59f8f3b8ed88505688e2beb GREEN
package.html ed8ec02b6178055895a71e713cade8ce8770c287 GREEN
...@@ -26,7 +26,6 @@ import org.fortiss.tooling.graphicsGL.ui.picker.ModelObjectPicker; ...@@ -26,7 +26,6 @@ import org.fortiss.tooling.graphicsGL.ui.picker.ModelObjectPicker;
* component objects. * component objects.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 1E93056065A5E6192B46B6950EBC1B97
*/ */
public class CompositeViewObject extends ViewObjectBase { public class CompositeViewObject extends ViewObjectBase {
/** The component objects. */ /** The component objects. */
......
...@@ -60,7 +60,6 @@ import org.lwjglx.util.vector.Vector4f; ...@@ -60,7 +60,6 @@ import org.lwjglx.util.vector.Vector4f;
* View object for {@link Graph3D}. * View object for {@link Graph3D}.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 103D3F21CA1D40F6BB24F8A027E64408
*/ */
public class Graph3DViewObject extends ViewObjectBase { public class Graph3DViewObject extends ViewObjectBase {
/** The graph model. */ /** The graph model. */
......
...@@ -24,7 +24,6 @@ import org.fortiss.tooling.graphicsGL.ui.camera.Camera; ...@@ -24,7 +24,6 @@ import org.fortiss.tooling.graphicsGL.ui.camera.Camera;
* {@link ViewObjectBase} instance for {@link Object3D} models. * {@link ViewObjectBase} instance for {@link Object3D} models.
* *
* @author hoelzl * @author hoelzl
* @ConQAT.Rating GREEN Hash: 645604B3740ADFEA2D5D01909ACFF6EC
*/ */
public class Object3DViewObject extends ViewObjectBase { public class Object3DViewObject extends ViewObjectBase {
/** The model object. */ /** The model object. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment