X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=org.eclipse.linuxtools.tmf.ui%2Fsrc%2Forg%2Feclipse%2Flinuxtools%2Ftmf%2Fui%2Fviews%2Fuml2sd%2Fhandlers%2FNextPage.java;h=c4dd072b9d073cb5b385398d1328bbd60a8adfeb;hb=c8422608ac728e00b6b87d680bd807514916c0c1;hp=58a6216e69cf250f95d209bb530b7b7a9bd2dc54;hpb=94cce698a51527027627ee04f625da11e5119beb;p=deliverable%2Ftracecompass.git diff --git a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/NextPage.java b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/NextPage.java index 58a6216e69..c4dd072b9d 100755 --- a/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/NextPage.java +++ b/org.eclipse.linuxtools.tmf.ui/src/org/eclipse/linuxtools/tmf/ui/views/uml2sd/handlers/NextPage.java @@ -1,16 +1,15 @@ /********************************************************************** - * 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; @@ -21,10 +20,10 @@ 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,8 +47,8 @@ public class NextPage extends Action { // Constructors // ------------------------------------------------------------------------ /** - * Default constructor - * + * Default constructor + * * @param view the view reference */ public NextPage(SDView view) { @@ -57,7 +56,7 @@ public class NextPage extends Action { fView = view; setText(SDMessages._36); setToolTipText(SDMessages._38); - setId(ID); + setId(ID); setImageDescriptor(Activator.getDefault().getImageDescripterFromPath(ITmfImageConstants.IMG_UI_NEXT_PAGE)); }