/******************************************************************************* * Copyright (c) 2013 Obeo. * 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: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.emf.compare.ide.ui.internal.structuremergeviewer.actions; import org.eclipse.compare.INavigatable; import org.eclipse.emf.compare.ide.ui.internal.EMFCompareIDEUIMessages; import org.eclipse.emf.compare.ide.ui.internal.EMFCompareIDEUIPlugin; import org.eclipse.jface.action.Action; import org.eclipse.ui.plugin.AbstractUIPlugin; /** * Action that manages the selection of the next difference. * * @author <a href="mailto:axel.richard@obeo.fr">Axel Richard</a> * @since 3.0 */ public class SelectNextDiffAction extends Action { private final INavigatable navigatable; /** * Constructor. * * @param configuration * The compare configuration object. */ public SelectNextDiffAction(INavigatable navigatable) { this.navigatable = navigatable; setToolTipText(EMFCompareIDEUIMessages.getString("next.diff.tooltip")); //$NON-NLS-1$ setImageDescriptor(AbstractUIPlugin.imageDescriptorFromPlugin(EMFCompareIDEUIPlugin.PLUGIN_ID, "icons/full/toolb16/next_diff.gif")); //$NON-NLS-1$ } /** * {@inheritDoc} * * @see org.eclipse.jface.action.Action#run() */ @Override public void run() { // Select next diff navigatable.selectChange(INavigatable.NEXT_CHANGE); } }