blob: 95d6c15eda19c7e0c47765bcfd5d9667c9bddaad [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2018 Joseph Carroll 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:
* Joseph Carroll <jdsalingerjr@gmail.com> - initial API and implementation
*
* SPDX-License-Identifier: EPL-1.0
******************************************************************************/
package org.eclipse.e4.ui.workbench.perspectiveswitcher.handlers;
public class E4WorkbenchHandlerConstants {
/**
* Id for handler "Show Perspective" for command "Show Perspective" in category
* "Perspectives" (value is
* <code>"org.eclipse.e4.ui.perspectives.handlers.showPerspective"</code>).
*/
public static final String PERSPECTIVES_SHOW_PERSPECTIVE = "org.eclipse.e4.ui.perspectives.handlers.showPerspective"; //$NON-NLS-1$
/**
* Id for handler "Save As" for command "Save As" in category "Perspectives"
* (value is <code>"org.eclipse.e4.ui.perspectives.handlers.saveAs"</code>).
*/
public static final String PERSPECTIVES_SAVE_AS = "org.eclipse.e4.ui.perspectives.handlers.saveAs"; //$NON-NLS-1$
/**
* Id for handler "Reset" for command "Reset" in category "Perspectives" (value
* is <code>"org.eclipse.e4.ui.perspectives.handlers.reset"</code>).
*/
public static final String PERSPECTIVES_RESET = "org.eclipse.e4.ui.perspectives.handlers.reset"; //$NON-NLS-1$
/**
* Id for handler "Close" for command "Close" in category "Perspectives" (value
* is <code>"org.eclipse.e4.ui.perspectives.handlers.close"</code>).
*/
public static final String PERSPECTIVES_CLOSE = "org.eclipse.e4.ui.perspectives.handlers.close"; //$NON-NLS-1$
/**
* Id for handler "Show Text" for command "Show Text" in category "Perspectives"
* (value is <code>"org.eclipse.e4.ui.perspectives.handlers.showText"</code>).
*/
public static final String PERSPECTIVES_SHOW_TEXT = "org.eclipse.e4.ui.perspectives.handlers.showText"; //$NON-NLS-1$
}