001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: /*
042: * JavaKeywords.java
043: *
044: * Created on February 9, 2005, 1:05 PM
045: */
046:
047: package org.netbeans.modules.visualweb.ejb.util;
048:
049: import java.util.ArrayList;
050:
051: /**
052: * List all the Java keywords and reserved words
053: * @author cao
054: */
055: public class JavaKeywords {
056:
057: private static ArrayList keywords;
058:
059: static {
060: // NOI18N
061: keywords = new ArrayList();
062: keywords.add("abstract");
063: keywords.add("assert");
064: keywords.add("boolean");
065: keywords.add("byte");
066: keywords.add("case");
067: keywords.add("catch");
068: keywords.add("char");
069: keywords.add("class");
070: keywords.add("const");
071: keywords.add("continue");
072: keywords.add("default");
073: keywords.add("do");
074: keywords.add("double");
075: keywords.add("else");
076: keywords.add("enum");
077: keywords.add("extends");
078: keywords.add("final");
079: keywords.add("float");
080: keywords.add("for");
081: keywords.add("goto");
082: keywords.add("if");
083: keywords.add("implements");
084: keywords.add("import");
085: keywords.add("instanceof");
086: keywords.add("int");
087: keywords.add("interface");
088: keywords.add("long");
089: keywords.add("native");
090: keywords.add("new");
091: keywords.add("package");
092: keywords.add("private");
093: keywords.add("protected");
094: keywords.add("public");
095: keywords.add("return");
096: keywords.add("short");
097: keywords.add("static");
098: keywords.add("strictfp");
099: keywords.add("super");
100: keywords.add("switch");
101: keywords.add("synchronized");
102: keywords.add("this");
103: keywords.add("throw");
104: keywords.add("throws");
105: keywords.add("transient");
106: keywords.add("try");
107: keywords.add("void");
108: keywords.add("volatile");
109: keywords.add("while");
110: // reserved words
111: keywords.add("true");
112: keywords.add("false");
113: keywords.add("null");
114: }
115:
116: public static boolean isKeyword(String name) {
117: if (keywords.contains(name))
118: return true;
119: else
120: return false;
121: }
122:
123: }
|