Java Doc and API clean up of TMF UML Sequence diagram framework
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / MoveSDRight.java
index b871150a3411c01d878e7cf11af1186f7aaad64d..628d3a3aab2145c1e1906bdb3fdb2175ba84ecea 100755 (executable)
@@ -1,10 +1,11 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * Copyright (c) 2011, 2012 Ericsson.
+ * 
  * All rights reserved.   This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
  * http://www.eclipse.org/legal/epl-v10.html
- * $Id: MoveSDRight.java,v 1.2 2006/09/20 20:56:26 ewchan Exp $
  * 
  * Contributors: 
  * IBM - Initial API and implementation
@@ -17,6 +18,9 @@ import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDWidget;
 
 /**
+ * Action class implementation to move right in the sequence diagram view within a page.
+ * 
+ * @version 1.0
  * @author sveyrier
  * 
  */
@@ -24,19 +28,36 @@ import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDWidget;
 public class MoveSDRight extends Action {
 
     // ------------------------------------------------------------------------
-    // Attributes
+    // Constants
     // ------------------------------------------------------------------------
-    public final static String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.MoveSDRight"; //$NON-NLS-1$
+    /**
+     * The action ID.
+     */
+     public final static String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.MoveSDRight"; //$NON-NLS-1$
 
+    // ------------------------------------------------------------------------
+    // Attributes
+    // ------------------------------------------------------------------------
+    /**
+      * The sequence diagram view reference.
+      */
     protected SDView fView = null;
 
     // ------------------------------------------------------------------------
     // Constructors
     // ------------------------------------------------------------------------
+    /**
+     * Default constructor
+     */
     public MoveSDRight() {
         this(null);
     }
-    
+
+    /**
+     * Constructor
+     * 
+     * @param view a sequence diagram view reference
+     */
     public MoveSDRight(SDView view) {
         super();
         setId(ID);
@@ -45,7 +66,7 @@ public class MoveSDRight extends Action {
     }
 
     // ------------------------------------------------------------------------
-    // Operations
+    // Methods
     // ------------------------------------------------------------------------
     /*
      * (non-Javadoc)
@@ -59,12 +80,14 @@ public class MoveSDRight extends Action {
         }
         
         SDWidget viewer = fView.getSDWidget();
-        if (viewer != null)
+        if (viewer != null) {
             viewer.scrollBy(+viewer.getVisibleWidth(), 0);
+        }
     }
-    
+
     /**
      * Sets the active SD view.
+     * 
      * @param view The SD view.
      */
    public void setView(SDView view) {
This page took 0.025423 seconds and 5 git commands to generate.