Skip to main content
summaryrefslogtreecommitdiffstats
blob: 14a7ac80d8bb237b7a7a930bf2701e777b100c5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*******************************************************************************
 * Copyright (c) 2005 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.ui.internal.cheatsheets.composite.parser;

/**
 * Interface containing the constants used by the cheatsheet parser
 * to identify the tags used in a composite cheatsheet file.
 */

public interface ICompositeCheatsheetTags {

	// Elements and attributes
	public static final String COMPOSITE_CHEATSHEET= "compositeCheatsheet"; //$NON-NLS-1$
	public static final String COMPOSITE_CHEATSHEET_STATE= "compositeCheatSheetState"; //$NON-NLS-1$
	public static final String TASK = "task"; //$NON-NLS-1$
	public static final String TASK_GROUP = "taskGroup"; //$NON-NLS-1$
	public static final String EXPLORER = "explorer"; //$NON-NLS-1$
	public static final String NAME = "name"; //$NON-NLS-1$
	public static final String VALUE = "value"; //$NON-NLS-1$
	public static final String KIND = "kind"; //$NON-NLS-1$
	public static final String ON_COMPLETION = "onCompletion"; //$NON-NLS-1$
	public static final String DEPENDS_ON = "dependsOn"; //$NON-NLS-1$
	public static final String STATE = "state"; //$NON-NLS-1$
	
	// Attribute values
	public static final String TREE = "tree"; //$NON-NLS-1$
	
    // Cheatsheet task parameters
	public static final String CHEATSHEET_TASK_ID = "id"; //$NON-NLS-1$
	public static final String CHEATSHEET_TASK_PATH = "path"; //$NON-NLS-1$
	
    // Tags used in Memento
	public static final String TASK_DATA = "taskData"; //$NON-NLS-1$
	public static final String CHEAT_SHEET_MANAGER = "cheatSheetManager"; //$NON-NLS-1$
	public static final String KEY = "key"; //$NON-NLS-1$
	public static final String TASK_ID = "id"; //$NON-NLS-1$
	
}

Back to the top