1 /*******************************************************************************
2  * Copyright (c) 2002, 2015 IBM Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.ui.internal.cheatsheets;
15 
16 public interface ICheatSheetResource {
17 
18 	// Empty string used through out the plugin
19 	public static final String EMPTY_STRING = ""; //$NON-NLS-1$
20 
21 	//
22 	// ID used through out the cheatsheets:
23 	//		plugin, menu, view
24 	//
25 	public static final String CHEAT_SHEET_PLUGIN_ID = "org.eclipse.ui.cheatsheets"; //$NON-NLS-1$
26 	public static final String CHEAT_SHEET_VIEW_ID = "org.eclipse.ui.cheatsheets.views.CheatSheetView"; //$NON-NLS-1$
27 	public static final String CHEAT_SHEET_RESOURCE_ID = "org.eclipse.ui.internal.cheatsheets.CheatsheetPluginResources"; //$NON-NLS-1$
28 
29 	// Memento info
30 	public static final String MEMENTO = "cheatSheetMemento"; //$NON-NLS-1$
31 	public static final String MEMENTO_ID = "id"; //$NON-NLS-1$
32 	public static final String MEMENTO_NAME = "name"; //$NON-NLS-1$
33 	public static final String MEMENTO_URL = "url"; //$NON-NLS-1$
34 
35 	public static final String TRIGGER_POINT_ID = "org.eclipse.ui.cheatsheetSelectionDialog"; //$NON-NLS-1$
36 
37 
38 	//
39 	// Constants used to retrieve images from the cheatsheet image registry.
40 	//
41 	public static final String CHEATSHEET_OBJ = "CHEATSHEET_OBJ";//$NON-NLS-1$
42 	public static final String COMPOSITE_OBJ = "COMPOSITE_OBJ";//$NON-NLS-1$
43 	public static final String CHEATSHEET_ITEM_SKIP = "CHEATSHEET_ITEM_SKIP"; //$NON-NLS-1$
44 	public static final String CHEATSHEET_ITEM_COMPLETE = "CHEATSHEET_ITEM_COMPLETE"; //$NON-NLS-1$
45 	public static final String CHEATSHEET_ITEM_HELP = "CHEATSHEET_ITEM_HELP"; //$NON-NLS-1$
46 	public static final String CHEATSHEET_START = "CHEATSHEET_START"; //$NON-NLS-1$
47 	public static final String CHEATSHEET_RESTART = "CHEATSHEET_RESTART"; //$NON-NLS-1$
48 	public static final String CHEATSHEET_ITEM_BUTTON_START = "CHEATSHEET_ITEM_BUTTON_START"; //$NON-NLS-1$
49 	public static final String CHEATSHEET_ITEM_BUTTON_SKIP = "CHEATSHEET_ITEM_BUTTON_SKIP"; //$NON-NLS-1$
50 	public static final String CHEATSHEET_ITEM_BUTTON_COMPLETE = "CHEATSHEET_ITEM_BUTTON_COMPLETE"; //$NON-NLS-1$
51 	public static final String CHEATSHEET_ITEM_BUTTON_RESTART = "CHEATSHEET_ITEM_BUTTON_RESTART"; //$NON-NLS-1$
52 	public static final String COMPOSITE_TASK_START = "COMPOSITE_TASK_START"; //$NON-NLS-1$
53 	public static final String COMPOSITE_TASK_SKIP = "COMPOSITE_TASK_SKIP"; //$NON-NLS-1$
54 	public static final String COMPOSITE_TASK_REVIEW = "COMPOSITE_TASK_REVIEW"; //$NON-NLS-1$
55 	public static final String COMPOSITE_GOTO_TASK = "COMPOSITE_GOTO_TASK"; //$NON-NLS-1$
56 	public static final String COMPOSITE_RESTART_ALL = "COMPOSITE_RESTART_ALL"; //$NON-NLS-1$
57 	public static final String CHEATSHEET_RETURN = "CHEATSHEET_RETURN"; //$NON-NLS-1$
58 	public static final String CHEATSHEET_VIEW = "CHEATSHEET_VIEW"; //$NON-NLS-1$
59 	public static final String WARNING ="WARNING"; //$NON-NLS-1$
60 	public static final String ERROR ="ERROR"; //$NON-NLS-1$
61 	public static final String INFORMATION = "INFORMATION"; //$NON-NLS-1$
62 }
63 
64