blob: 3c75aa5e931fa4a20e1da6ad2821ebe7f50f0c79 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui;
/**
* Help context ids for the P2 UI
* <p>
* This interface contains constants only; it is not intended to be implemented
* or extended.
* </p>
*
* @since 3.4
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IProvHelpContextIds {
String PREFIX = ProvUIActivator.PLUGIN_ID + "."; //$NON-NLS-1$
String REVERT_CONFIGURATION_WIZARD = PREFIX + "revert_configuration_wizard_context"; //$NON-NLS-1$
String UNINSTALL_WIZARD = PREFIX + "uinstall_wizard_context"; //$NON-NLS-1$
String UPDATE_WIZARD = PREFIX + "update_wizard_context"; //$NON-NLS-1$
String ADD_REPOSITORY_DIALOG = PREFIX + "add_repository_dialog_context"; //$NON-NLS-1$
String INSTALL_WIZARD = PREFIX + "install_wizard_context"; //$NON-NLS-1$
String REPOSITORY_MANIPULATION_DIALOG = PREFIX + "repository_manipulation_dialog_context"; //$NON-NLS-1$
String INSTALLED_SOFTWARE = PREFIX + "installed_software_context"; //$NON-NLS-1$
String AVAILABLE_SOFTWARE = PREFIX + "available_software_context"; //$NON-NLS-1$
String TRUST_DIALOG = PREFIX + "trust_dialog_context"; //$NON-NLS-1$
}