/* * Copyright (c) 2015 the original author or authors. * 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: * Etienne Studer & Donát Csikós (Gradle Inc.) - initial API and implementation and initial documentation */ package org.eclipse.buildship.ui; /** * Help contexts registered via the <code>org.eclipse.help.contexts</code> extension point in the * plugin.xml. */ public final class HelpContext { // the help context ID has to be in the following format: ${PLUGIN_ID}.${CONTEXT_ID} // the context id is defined in the external (xml) file specified in the plugin.xml /** * The help context id of the project import. */ public static final String PROJECT_IMPORT = UiPlugin.PLUGIN_ID + ".projectimport"; //$NON-NLS-1$ /** * The help context id of the project creation. */ public static final String PROJECT_CREATION = UiPlugin.PLUGIN_ID + ".projectcreation"; //$NON-NLS-1$ private HelpContext() { } }