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 628d3a3aab2145c1e1906bdb3fdb2175ba84ecea..9a1f62cd181907079f5424d7249112cb9258f70e 100755 (executable)
@@ -1,16 +1,15 @@
 /**********************************************************************
- * Copyright (c) 2005, 2006 IBM Corporation and others.
- * Copyright (c) 2011, 2012 Ericsson.
- * 
+ * 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
- * 
- * 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;
@@ -19,10 +18,10 @@ 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 {
@@ -55,7 +54,7 @@ public class MoveSDRight extends Action {
 
     /**
      * Constructor
-     * 
+     *
      * @param view a sequence diagram view reference
      */
     public MoveSDRight(SDView view) {
@@ -74,11 +73,11 @@ public class MoveSDRight extends Action {
      */
     @Override
     public void run() {
-        
+
         if (fView == null) {
             return;
         }
-        
+
         SDWidget viewer = fView.getSDWidget();
         if (viewer != null) {
             viewer.scrollBy(+viewer.getVisibleWidth(), 0);
@@ -87,7 +86,7 @@ public class MoveSDRight extends Action {
 
     /**
      * Sets the active SD view.
-     * 
+     *
      * @param view The SD view.
      */
    public void setView(SDView view) {
This page took 0.026969 seconds and 5 git commands to generate.