/******************************************************************************* * Copyright (c) 2016 ARM Ltd. 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: * ARM Ltd and ARM Germany GmbH - Initial API and implementation *******************************************************************************/ package com.arm.cmsis.pack.installer.ui; /** * Interface for help context IDs in this plug-in */ public class IHelpContextIds { public static final String PREFIX = CpInstallerPlugInUI.PLUGIN_ID + "."; //$NON-NLS-1$ public static final String PACKS_VIEW = PREFIX + "packs_view"; //$NON-NLS-1$ public static final String DEVICES_VIEW = PREFIX + "devices_view"; //$NON-NLS-1$ public static final String BOARDS_VIEW = PREFIX + "boards_view"; //$NON-NLS-1$ public static final String EXAMPLES_VIEW = PREFIX + "examples_view"; //$NON-NLS-1$ public static final String PACK_PROPERTIES_VIEW = PREFIX + "pack_properties_view"; //$NON-NLS-1$ }