KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > pde > internal > core > icheatsheet > comp > ICompCSConstants


1 /*******************************************************************************
2  * Copyright (c) 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
12 package org.eclipse.pde.internal.core.icheatsheet.comp;
13
14 import org.eclipse.pde.internal.core.icheatsheet.ICSConstants;
15
16 /**
17  * ICompCSConstants
18  *
19  */

20 public interface ICompCSConstants extends ICSConstants {
21
22     // Elements
23

24     public static final String JavaDoc ELEMENT_COMPOSITE_CHEATSHEET = "compositeCheatsheet"; //$NON-NLS-1$
25

26     public static final String JavaDoc ELEMENT_TASKGROUP = "taskGroup"; //$NON-NLS-1$
27

28     public static final String JavaDoc ELEMENT_TASK = "task"; //$NON-NLS-1$
29

30     public static final String JavaDoc ELEMENT_INTRO = "intro"; //$NON-NLS-1$
31

32     public static final String JavaDoc ELEMENT_ONCOMPLETION = "onCompletion"; //$NON-NLS-1$
33

34     public static final String JavaDoc ELEMENT_DEPENDENCY = "dependency"; //$NON-NLS-1$
35

36     public static final String JavaDoc ELEMENT_PARAM = "param"; //$NON-NLS-1$
37

38     // Attributes
39

40     public static final String JavaDoc ATTRIBUTE_KIND = "kind"; //$NON-NLS-1$
41

42     public static final String JavaDoc ATTRIBUTE_NAME = "name"; //$NON-NLS-1$
43

44     public static final String JavaDoc ATTRIBUTE_ID = "id"; //$NON-NLS-1$
45

46     public static final String JavaDoc ATTRIBUTE_SKIP = "skip"; //$NON-NLS-1$
47

48     public static final String JavaDoc ATTRIBUTE_VALUE = "value"; //$NON-NLS-1$
49

50     public static final String JavaDoc ATTRIBUTE_TASK = ELEMENT_TASK;
51     
52     // Attribute Values:
53
// Element: param
54
// Attribute: name
55

56     public static final String JavaDoc ATTRIBUTE_VALUE_ID = ATTRIBUTE_ID;
57
58     public static final String JavaDoc ATTRIBUTE_VALUE_PATH = "path"; //$NON-NLS-1$
59

60     public static final String JavaDoc ATTRIBUTE_VALUE_SHOWINTRO = "showIntro"; //$NON-NLS-1$
61

62     // Attribute Values:
63
// Element: taskGroup
64
// Attribute: kind
65

66     public static final String JavaDoc ATTRIBUTE_VALUE_SET = "set"; //$NON-NLS-1$
67

68     public static final String JavaDoc ATTRIBUTE_VALUE_SEQUENCE = "sequence"; //$NON-NLS-1$
69

70     public static final String JavaDoc ATTRIBUTE_VALUE_CHOICE = "choice"; //$NON-NLS-1$
71

72     // Attribute Values:
73
// Element: task
74
// Attribute: kind
75

76     public static final String JavaDoc ATTRIBUTE_VALUE_CHEATSHEET = "cheatsheet"; //$NON-NLS-1$
77

78     
79     // Types
80

81     public static final int TYPE_COMPOSITE_CHEATSHEET = 0;
82
83     public static final int TYPE_TASKGROUP = 1;
84     
85     public static final int TYPE_TASK = 2;
86     
87     public static final int TYPE_INTRO = 3;
88     
89     public static final int TYPE_ONCOMPLETION = 4;
90     
91     public static final int TYPE_DEPENDENCY = 5;
92     
93     public static final int TYPE_PARAM = 6;
94     
95 }
96
Popular Tags