tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / MoveSDRight.java
index b871150a3411c01d878e7cf11af1186f7aaad64d..9a1f62cd181907079f5424d7249112cb9258f70e 100755 (executable)
@@ -1,15 +1,15 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006, 2011 IBM Corporation and others.
+ * Copyright (c) 2005, 2012 IBM Corporation, 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
- * Bernd Hufmann - Updated for TMF
+ *
+ * Contributors:
+ *     IBM - Initial API and implementation
+ *     Bernd Hufmann - Updated for TMF
  **********************************************************************/
+
 package org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers;
 
 import org.eclipse.jface.action.Action;
@@ -17,26 +17,46 @@ 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
- * 
+ *
  */
 
 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 +65,7 @@ public class MoveSDRight extends Action {
     }
 
     // ------------------------------------------------------------------------
-    // Operations
+    // Methods
     // ------------------------------------------------------------------------
     /*
      * (non-Javadoc)
@@ -53,18 +73,20 @@ public class MoveSDRight extends Action {
      */
     @Override
     public void run() {
-        
+
         if (fView == null) {
             return;
         }
-        
+
         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.024577 seconds and 5 git commands to generate.