Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 74d757657f1b26646fc77d5681e18b40284fc324 (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
/**********************************************************************
 * Copyright (c) 2002-2004 Rational Software Corporation and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Common Public License v0.5
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v05.html
 * 
 * Contributors: 
 * IBM Rational Software - Initial API and implementation
***********************************************************************/
package org.eclipse.cdt.core.parser;



public class KeywordSetKey extends Enum
{
	public static final KeywordSetKey EMPTY = new KeywordSetKey( 0 );
	public static final KeywordSetKey DECL_SPECIFIER_SEQUENCE = new KeywordSetKey( 1 );
	public static final KeywordSetKey DECLARATION = new KeywordSetKey( 2 );
	public static final KeywordSetKey STATEMENT = new KeywordSetKey(3);
	public static final KeywordSetKey BASE_SPECIFIER = new KeywordSetKey(4);
	public static final KeywordSetKey POST_USING = new KeywordSetKey( 5 );
	public static final KeywordSetKey FUNCTION_MODIFIER = new KeywordSetKey( 6 );
	public static final KeywordSetKey NAMESPACE_ONLY = new KeywordSetKey(6);
	public static final KeywordSetKey MACRO = new KeywordSetKey( 7 );
	public static final KeywordSetKey PP_DIRECTIVE = new KeywordSetKey( 8 );
	public static final KeywordSetKey EXPRESSION = new KeywordSetKey( 9 );
	public static final KeywordSetKey MEMBER = new KeywordSetKey(10);
	public static final KeywordSetKey ALL = new KeywordSetKey( 11 );
	public static final KeywordSetKey KEYWORDS = new KeywordSetKey( 12 );
	public static final KeywordSetKey TYPES = new KeywordSetKey( 13 );
	/**
	 * @param enumValue
	 */
	protected KeywordSetKey(int enumValue) {
		super(enumValue);
	}
	
}

Back to the top