tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / handlers / NextPage.java
index 0eef050945cb05bb29a4eac4648dc6fcd2e04d42..c4dd072b9d073cb5b385398d1328bbd60a8adfeb 100755 (executable)
@@ -1,30 +1,29 @@
 /**********************************************************************
- * Copyright (c) 2005, 2008 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;
 import org.eclipse.linuxtools.internal.tmf.ui.ITmfImageConstants;
-import org.eclipse.linuxtools.internal.tmf.ui.TmfUiPlugin;
+import org.eclipse.linuxtools.internal.tmf.ui.Activator;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.SDView;
 import org.eclipse.linuxtools.tmf.ui.views.uml2sd.util.SDMessages;
 
 /**
  * Action class implementation to move the focus to the next page of the whole sequence diagram.
- * 
+ *
  * @version 1.0
  * @author sveyrier
- * 
+ *
  */
 public class NextPage extends Action {
 
@@ -35,7 +34,7 @@ public class NextPage extends Action {
      * The action ID.
      */
     public static final String ID = "org.eclipse.linuxtools.tmf.ui.views.uml2sd.handlers.nextpage"; //$NON-NLS-1$
-    
+
     // ------------------------------------------------------------------------
     // Attributes
     // ------------------------------------------------------------------------
@@ -48,17 +47,17 @@ public class NextPage extends Action {
     // Constructors
     // ------------------------------------------------------------------------
     /**
-     * Default constructor 
-     * 
-     * @param theView the view reference
+     * Default constructor
+     *
+     * @param view the view reference
      */
-    public NextPage(SDView theView) {
+    public NextPage(SDView view) {
         super();
-        fView = theView;
+        fView = view;
         setText(SDMessages._36);
         setToolTipText(SDMessages._38);
-        setId(ID); 
-        setImageDescriptor(TmfUiPlugin.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_NEXT_PAGE));
+        setId(ID);
+        setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_NEXT_PAGE));
     }
 
     // ------------------------------------------------------------------------
This page took 0.025233 seconds and 5 git commands to generate.