KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > codeassist > impl > Keywords


1 /*******************************************************************************
2  * Copyright (c) 2000, 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.jdt.internal.codeassist.impl;
12
13 public interface Keywords {
14     int COUNT = 41;
15     
16     char[] ABSTRACT = "abstract".toCharArray(); //$NON-NLS-1$
17
char[] ASSERT = "assert".toCharArray(); //$NON-NLS-1$
18
char[] BREAK = "break".toCharArray(); //$NON-NLS-1$
19
char[] CASE = "case".toCharArray(); //$NON-NLS-1$
20
char[] CATCH = "catch".toCharArray(); //$NON-NLS-1$
21
char[] CLASS = "class".toCharArray(); //$NON-NLS-1$
22
char[] CONTINUE = "continue".toCharArray(); //$NON-NLS-1$
23
char[] DEFAULT = "default".toCharArray(); //$NON-NLS-1$
24
char[] DO = "do".toCharArray(); //$NON-NLS-1$
25
char[] ELSE = "else".toCharArray(); //$NON-NLS-1$
26
char[] EXTENDS = "extends".toCharArray(); //$NON-NLS-1$
27
char[] FINAL = "final".toCharArray(); //$NON-NLS-1$
28
char[] FINALLY = "finally".toCharArray(); //$NON-NLS-1$
29
char[] FOR = "for".toCharArray(); //$NON-NLS-1$
30
char[] IF = "if".toCharArray(); //$NON-NLS-1$
31
char[] IMPLEMENTS = "implements".toCharArray(); //$NON-NLS-1$
32
char[] IMPORT = "import".toCharArray(); //$NON-NLS-1$
33
char[] INSTANCEOF = "instanceof".toCharArray(); //$NON-NLS-1$
34
char[] INTERFACE = "interface".toCharArray(); //$NON-NLS-1$
35
char[] NATIVE = "native".toCharArray(); //$NON-NLS-1$
36
char[] NEW = "new".toCharArray(); //$NON-NLS-1$
37
char[] PACKAGE = "package".toCharArray(); //$NON-NLS-1$
38
char[] PRIVATE = "private".toCharArray(); //$NON-NLS-1$
39
char[] PROTECTED = "protected".toCharArray(); //$NON-NLS-1$
40
char[] PUBLIC = "public".toCharArray(); //$NON-NLS-1$
41
char[] RETURN = "return".toCharArray(); //$NON-NLS-1$
42
char[] STATIC = "static".toCharArray(); //$NON-NLS-1$
43
char[] STRICTFP = "strictfp".toCharArray(); //$NON-NLS-1$
44
char[] SUPER = "super".toCharArray(); //$NON-NLS-1$
45
char[] SWITCH = "switch".toCharArray(); //$NON-NLS-1$
46
char[] SYNCHRONIZED = "synchronized".toCharArray(); //$NON-NLS-1$
47
char[] THIS = "this".toCharArray(); //$NON-NLS-1$
48
char[] THROW = "throw".toCharArray(); //$NON-NLS-1$
49
char[] THROWS = "throws".toCharArray(); //$NON-NLS-1$
50
char[] TRANSIENT = "transient".toCharArray(); //$NON-NLS-1$
51
char[] TRY = "try".toCharArray(); //$NON-NLS-1$
52
char[] VOLATILE = "volatile".toCharArray(); //$NON-NLS-1$
53
char[] WHILE = "while".toCharArray(); //$NON-NLS-1$
54
char[] TRUE = "true".toCharArray(); //$NON-NLS-1$
55
char[] FALSE = "false".toCharArray(); //$NON-NLS-1$
56
char[] NULL = "null".toCharArray(); //$NON-NLS-1$
57
}
58
Popular Tags