/******************************************************************************* * Copyright (c) 2010 SAP AG. * 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: * Emil Simeonov - initial API and implementation. * Dimitar Donchev - initial API and implementation. * Dimitar Tenev - initial API and implementation. * Nevena Manova - initial API and implementation. * Georgi Konstantinov - initial API and implementation. *******************************************************************************/ package org.eclipse.wst.sse.sieditor.ui.v2.wsdltree; public class ContextMenuConstants { public static final String RENAME_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.rename"; //$NON-NLS-1$ public static final String REFACTOR_SUBMENU_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.refactor"; //$NON-NLS-1$ public static final String DELETE_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.delete"; //$NON-NLS-1$ public static final String ADD_FAULT_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.add.fault"; //$NON-NLS-1$ public static final String ADD_IN_PARAMETER_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.add.in.parameter"; //$NON-NLS-1$ public static final String ADD_OUT_PARAMETER_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.add.out.parameter"; //$NON-NLS-1$ public static final String ADD_OPERATION_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.add.operation"; //$NON-NLS-1$ public static final String ADD_SERVICE_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.add.service"; //$NON-NLS-1$ public static final String OPEN_IN_NEW_EDITOR_ACTION_ID = "org.eclipse.wst.sse.sieditor.ui.wsdltree.open_in_new_editor"; //$NON-NLS-1$ public static final String GROUP_ADD_ITEMS = "org.eclipse.wst.sse.sieditor.ui.wsdltree.menu.add.items"; //$NON-NLS-1$ public static final String GROUP_REFACTOR = "org.eclipse.wst.sse.sieditor.ui.wsdltree.menu.refactor"; //$NON-NLS-1$ public static final String GROUP_EDIT = "org.eclipse.wst.sse.sieditor.ui.wsdltree.menu.edit"; //$NON-NLS-1$ public static final String GROUP_OPEN_IN_NEW_EDITOR = "org.eclipse.wst.sse.sieditor.ui.wsdltree.menu.open_in_new_editor"; //$NON-NLS-1$ }