KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > expressions > ExpressionTagNames


1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 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.core.expressions;
12
13 /**
14  * Class defining the tag names of the XML elements of the common
15  * expression language.
16  *
17  * @since 3.0
18  */

19 public final class ExpressionTagNames {
20
21     /** The tag name of the enablement expression (value: <code>enablement</code>) */
22     public static final String JavaDoc ENABLEMENT= "enablement"; //$NON-NLS-1$
23

24     /** The tag name of the and expression (value: <code>and</code>) */
25     public static final String JavaDoc AND= "and"; //$NON-NLS-1$
26

27     /** The tag name of the or expression (value: <code>or</code>) */
28     public static final String JavaDoc OR= "or"; //$NON-NLS-1$
29

30     /** The tag name of the not expression (value: <code>not</code>) */
31     public static final String JavaDoc NOT= "not"; //$NON-NLS-1$
32

33     /** The tag name of the instanceof expression (value: <code>instanceof</code>) */
34     public static final String JavaDoc INSTANCEOF= "instanceof"; //$NON-NLS-1$
35

36     /** The tag name of the test expression (value: <code>test</code>) */
37     public static final String JavaDoc TEST= "test"; //$NON-NLS-1$
38

39     /** The tag name of the with expression (value: <code>with</code>) */
40     public static final String JavaDoc WITH= "with"; //$NON-NLS-1$
41

42     /** The tag name of the adapt expression (value: <code>adapt</code>) */
43     public static final String JavaDoc ADAPT= "adapt"; //$NON-NLS-1$
44

45     /** The tag name of the count expression (value: <code>count</code>) */
46     public static final String JavaDoc COUNT= "count"; //$NON-NLS-1$
47

48     /** The tag name of the adapt expression (value: <code>iterate</code>) */
49     public static final String JavaDoc ITERATE= "iterate"; //$NON-NLS-1$
50

51     /** The tag name of the resolve expression (value: <code>resolve</code>) */
52     public static final String JavaDoc RESOLVE= "resolve"; //$NON-NLS-1$
53

54     /** The tag name of the systemTest expression (value: <code>systemTest</code>) */
55     public static final String JavaDoc SYSTEM_TEST= "systemTest"; //$NON-NLS-1$
56

57     /** The tag name of the equals expression (value: <code>equals</code>) */
58     public static final String JavaDoc EQUALS= "equals"; //$NON-NLS-1$
59

60     /**
61      * The tag name of the reference expression (value: <code>reference</code>)
62      *
63      * @since 3.3
64      */

65     public static final String JavaDoc REFERENCE= "reference"; //$NON-NLS-1$
66
}
67
Popular Tags