KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > cheatsheets > composite > parser > ICompositeCheatsheetTags


1 /*******************************************************************************
2  * Copyright (c) 2005, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.cheatsheets.composite.parser;
12
13 /**
14  * Interface containing the constants used by the cheatsheet parser
15  * to identify the tags used in a composite cheatsheet file.
16  */

17
18 public interface ICompositeCheatsheetTags {
19
20     // Elements and attributes
21
public static final String JavaDoc COMPOSITE_CHEATSHEET= "compositeCheatsheet"; //$NON-NLS-1$
22
public static final String JavaDoc COMPOSITE_CHEATSHEET_STATE= "compositeCheatSheetState"; //$NON-NLS-1$
23
public static final String JavaDoc TASK = "task"; //$NON-NLS-1$
24
public static final String JavaDoc TASK_GROUP = "taskGroup"; //$NON-NLS-1$
25
public static final String JavaDoc EXPLORER = "explorer"; //$NON-NLS-1$
26
public static final String JavaDoc NAME = "name"; //$NON-NLS-1$
27
public static final String JavaDoc VALUE = "value"; //$NON-NLS-1$
28
public static final String JavaDoc KIND = "kind"; //$NON-NLS-1$
29
public static final String JavaDoc ON_COMPLETION = "onCompletion"; //$NON-NLS-1$
30
public static final String JavaDoc DEPENDS_ON = "dependsOn"; //$NON-NLS-1$
31
public static final String JavaDoc STATE = "state"; //$NON-NLS-1$
32

33     // Attribute values
34
public static final String JavaDoc TREE = "tree"; //$NON-NLS-1$
35

36     // Cheatsheet task parameters
37
public static final String JavaDoc CHEATSHEET_TASK_KIND = "cheatsheet"; //$NON-NLS-1$
38
public static final String JavaDoc CHEATSHEET_TASK_ID = "id"; //$NON-NLS-1$
39
public static final String JavaDoc CHEATSHEET_TASK_PATH = "path"; //$NON-NLS-1$
40
public static final String JavaDoc CHEATSHEET_TASK_SHOW_INTRO = "showIntro"; //$NON-NLS-1$
41

42     // Tags used in Memento
43
public static final String JavaDoc TASK_DATA = "taskData"; //$NON-NLS-1$
44
public static final String JavaDoc CHEAT_SHEET_MANAGER = "cheatSheetManager"; //$NON-NLS-1$
45
public static final String JavaDoc KEY = "key"; //$NON-NLS-1$
46
public static final String JavaDoc TASK_ID = "id"; //$NON-NLS-1$
47
public static final String JavaDoc SELECTED_TASK = "selectedTask"; //$NON-NLS-1$
48
public static final String JavaDoc LAYOUT_DATA = "layout"; //$NON-NLS-1$
49

50 }
51
Popular Tags