Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ae42ef0170c13ae83cd18d17982fd30c23a312ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*****************************************************************************
 * Copyright (c) 2015 CEA LIST and others.
 * 
 * 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:
 *   Shuai Li (CEA LIST) <shuai.li@cea.fr> - Initial API and implementation
 *   
 *****************************************************************************/

package org.eclipse.papyrus.editor.handlers;

import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;

/**
 * The handler for the previous tab command that lets the user navigate to
 * the previous page of the active tab-folder with Ctrl+Shift+Tab
 * 
 * @author Shuai Li
 */
public class PreviousTabHandler extends TraverseTabHandler {
	public PreviousTabHandler() {
		super(true);
	}
}

Back to the top