Author: remy.maucherat(a)jboss.com
Date: 2008-09-18 22:13:40 -0400 (Thu, 18 Sep 2008)
New Revision: 786
Modified:
trunk/java/org/apache/el/parser/ELParser.java
trunk/java/org/apache/el/parser/ELParserConstants.java
trunk/java/org/apache/el/parser/ELParserTokenManager.java
trunk/java/org/apache/el/parser/ELParserTreeConstants.java
trunk/java/org/apache/el/parser/JJTELParserState.java
trunk/java/org/apache/el/parser/ParseException.java
trunk/java/org/apache/el/parser/SimpleCharStream.java
trunk/java/org/apache/el/parser/Token.java
trunk/java/org/apache/el/parser/TokenMgrError.java
Log:
- Regenerated EL parser classes.
Modified: trunk/java/org/apache/el/parser/ELParser.java
===================================================================
--- trunk/java/org/apache/el/parser/ELParser.java 2008-09-19 02:11:27 UTC (rev 785)
+++ trunk/java/org/apache/el/parser/ELParser.java 2008-09-19 02:13:40 UTC (rev 786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JJTree&JavaCC: Do not edit this line. ELParser.java */
package org.apache.el.parser;
import java.io.StringReader;
@@ -41,18 +25,28 @@
try {
label_1:
while (true) {
- if (jj_2_1(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case LITERAL_EXPRESSION:
+ case START_DYNAMIC_EXPRESSION:
+ case START_DEFERRED_EXPRESSION:
;
- } else {
+ break;
+ default:
+ jj_la1[0] = jj_gen;
break label_1;
}
- if (jj_2_2(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case START_DEFERRED_EXPRESSION:
DeferredExpression();
- } else if (jj_2_3(3)) {
+ break;
+ case START_DYNAMIC_EXPRESSION:
DynamicExpression();
- } else if (jj_2_4(3)) {
+ break;
+ case LITERAL_EXPRESSION:
LiteralExpression();
- } else {
+ break;
+ default:
+ jj_la1[1] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -188,7 +182,7 @@
Or();
label_2:
while (true) {
- if (jj_2_5(3)) {
+ if (jj_2_1(3)) {
;
} else {
break label_2;
@@ -196,29 +190,29 @@
jj_consume_token(QUESTIONMARK);
Choice();
jj_consume_token(COLON);
- AstChoice jjtn001 = new
AstChoice(JJTCHOICE);
- boolean jjtc001 = true;
- jjtree.openNodeScope(jjtn001);
+ AstChoice jjtn001 = new
AstChoice(JJTCHOICE);
+ boolean jjtc001 = true;
+ jjtree.openNodeScope(jjtn001);
try {
Choice();
} catch (Throwable jjte001) {
- if (jjtc001) {
- jjtree.clearNodeScope(jjtn001);
- jjtc001 = false;
- } else {
- jjtree.popNode();
- }
- if (jjte001 instanceof RuntimeException) {
- {if (true) throw
(RuntimeException)jjte001;}
- }
- if (jjte001 instanceof ParseException) {
- {if (true) throw (ParseException)jjte001;}
- }
- {if (true) throw (Error)jjte001;}
+ if (jjtc001) {
+
jjtree.clearNodeScope(jjtn001);
+ jjtc001 = false;
+ } else {
+ jjtree.popNode();
+ }
+ if (jjte001 instanceof
RuntimeException) {
+ {if (true) throw
(RuntimeException)jjte001;}
+ }
+ if (jjte001 instanceof
ParseException) {
+ {if (true) throw
(ParseException)jjte001;}
+ }
+ {if (true) throw
(Error)jjte001;}
} finally {
- if (jjtc001) {
- jjtree.closeNodeScope(jjtn001, 3);
- }
+ if (jjtc001) {
+ jjtree.closeNodeScope(jjtn001,
3);
+ }
}
}
}
@@ -231,16 +225,24 @@
And();
label_3:
while (true) {
- if (jj_2_6(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case OR0:
+ case OR1:
;
- } else {
+ break;
+ default:
+ jj_la1[2] = jj_gen;
break label_3;
}
- if (jj_2_7(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case OR0:
jj_consume_token(OR0);
- } else if (jj_2_8(3)) {
+ break;
+ case OR1:
jj_consume_token(OR1);
- } else {
+ break;
+ default:
+ jj_la1[3] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -279,16 +281,24 @@
Equality();
label_4:
while (true) {
- if (jj_2_9(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case AND0:
+ case AND1:
;
- } else {
+ break;
+ default:
+ jj_la1[4] = jj_gen;
break label_4;
}
- if (jj_2_10(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case AND0:
jj_consume_token(AND0);
- } else if (jj_2_11(3)) {
+ break;
+ case AND1:
jj_consume_token(AND1);
- } else {
+ break;
+ default:
+ jj_la1[5] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -327,17 +337,29 @@
Compare();
label_5:
while (true) {
- if (jj_2_12(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case EQ0:
+ case EQ1:
+ case NE0:
+ case NE1:
;
- } else {
+ break;
+ default:
+ jj_la1[6] = jj_gen;
break label_5;
}
- if (jj_2_17(3)) {
- if (jj_2_13(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case EQ0:
+ case EQ1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case EQ0:
jj_consume_token(EQ0);
- } else if (jj_2_14(3)) {
+ break;
+ case EQ1:
jj_consume_token(EQ1);
- } else {
+ break;
+ default:
+ jj_la1[7] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -365,12 +387,18 @@
jjtree.closeNodeScope(jjtn001, 2);
}
}
- } else if (jj_2_18(3)) {
- if (jj_2_15(3)) {
+ break;
+ case NE0:
+ case NE1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case NE0:
jj_consume_token(NE0);
- } else if (jj_2_16(3)) {
+ break;
+ case NE1:
jj_consume_token(NE1);
- } else {
+ break;
+ default:
+ jj_la1[8] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -398,7 +426,9 @@
jjtree.closeNodeScope(jjtn002, 2);
}
}
- } else {
+ break;
+ default:
+ jj_la1[9] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -413,17 +443,33 @@
Math();
label_6:
while (true) {
- if (jj_2_19(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case GT0:
+ case GT1:
+ case LT0:
+ case LT1:
+ case GE0:
+ case GE1:
+ case LE0:
+ case LE1:
;
- } else {
+ break;
+ default:
+ jj_la1[10] = jj_gen;
break label_6;
}
- if (jj_2_28(3)) {
- if (jj_2_20(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case LT0:
+ case LT1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case LT0:
jj_consume_token(LT0);
- } else if (jj_2_21(3)) {
+ break;
+ case LT1:
jj_consume_token(LT1);
- } else {
+ break;
+ default:
+ jj_la1[11] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -451,12 +497,18 @@
jjtree.closeNodeScope(jjtn001, 2);
}
}
- } else if (jj_2_29(3)) {
- if (jj_2_22(3)) {
+ break;
+ case GT0:
+ case GT1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case GT0:
jj_consume_token(GT0);
- } else if (jj_2_23(3)) {
+ break;
+ case GT1:
jj_consume_token(GT1);
- } else {
+ break;
+ default:
+ jj_la1[12] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -484,12 +536,18 @@
jjtree.closeNodeScope(jjtn002, 2);
}
}
- } else if (jj_2_30(3)) {
- if (jj_2_24(3)) {
+ break;
+ case LE0:
+ case LE1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case LE0:
jj_consume_token(LE0);
- } else if (jj_2_25(3)) {
+ break;
+ case LE1:
jj_consume_token(LE1);
- } else {
+ break;
+ default:
+ jj_la1[13] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -517,12 +575,18 @@
jjtree.closeNodeScope(jjtn003, 2);
}
}
- } else if (jj_2_31(3)) {
- if (jj_2_26(3)) {
+ break;
+ case GE0:
+ case GE1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case GE0:
jj_consume_token(GE0);
- } else if (jj_2_27(3)) {
+ break;
+ case GE1:
jj_consume_token(GE1);
- } else {
+ break;
+ default:
+ jj_la1[14] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -550,7 +614,9 @@
jjtree.closeNodeScope(jjtn004, 2);
}
}
- } else {
+ break;
+ default:
+ jj_la1[15] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -565,12 +631,17 @@
Multiplication();
label_7:
while (true) {
- if (jj_2_32(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PLUS:
+ case MINUS:
;
- } else {
+ break;
+ default:
+ jj_la1[16] = jj_gen;
break label_7;
}
- if (jj_2_33(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case PLUS:
jj_consume_token(PLUS);
AstPlus jjtn001 = new AstPlus(JJTPLUS);
boolean jjtc001 = true;
@@ -596,7 +667,8 @@
jjtree.closeNodeScope(jjtn001, 2);
}
}
- } else if (jj_2_34(3)) {
+ break;
+ case MINUS:
jj_consume_token(MINUS);
AstMinus jjtn002 = new AstMinus(JJTMINUS);
boolean jjtc002 = true;
@@ -622,7 +694,9 @@
jjtree.closeNodeScope(jjtn002, 2);
}
}
- } else {
+ break;
+ default:
+ jj_la1[17] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -637,12 +711,20 @@
Unary();
label_8:
while (true) {
- if (jj_2_35(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case MULT:
+ case DIV0:
+ case DIV1:
+ case MOD0:
+ case MOD1:
;
- } else {
+ break;
+ default:
+ jj_la1[18] = jj_gen;
break label_8;
}
- if (jj_2_40(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case MULT:
jj_consume_token(MULT);
AstMult jjtn001 = new AstMult(JJTMULT);
boolean jjtc001 = true;
@@ -668,12 +750,18 @@
jjtree.closeNodeScope(jjtn001, 2);
}
}
- } else if (jj_2_41(3)) {
- if (jj_2_36(3)) {
+ break;
+ case DIV0:
+ case DIV1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case DIV0:
jj_consume_token(DIV0);
- } else if (jj_2_37(3)) {
+ break;
+ case DIV1:
jj_consume_token(DIV1);
- } else {
+ break;
+ default:
+ jj_la1[19] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -701,12 +789,18 @@
jjtree.closeNodeScope(jjtn002, 2);
}
}
- } else if (jj_2_42(3)) {
- if (jj_2_38(3)) {
+ break;
+ case MOD0:
+ case MOD1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case MOD0:
jj_consume_token(MOD0);
- } else if (jj_2_39(3)) {
+ break;
+ case MOD1:
jj_consume_token(MOD1);
- } else {
+ break;
+ default:
+ jj_la1[20] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -734,7 +828,9 @@
jjtree.closeNodeScope(jjtn003, 2);
}
}
- } else {
+ break;
+ default:
+ jj_la1[21] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -746,7 +842,8 @@
* For '-' '!' 'not' 'empty', then Value
*/
final public void Unary() throws ParseException {
- if (jj_2_45(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case MINUS:
jj_consume_token(MINUS);
AstNegative jjtn001 = new AstNegative(JJTNEGATIVE);
boolean jjtc001 = true;
@@ -772,12 +869,18 @@
jjtree.closeNodeScope(jjtn001, true);
}
}
- } else if (jj_2_46(3)) {
- if (jj_2_43(3)) {
+ break;
+ case NOT0:
+ case NOT1:
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case NOT0:
jj_consume_token(NOT0);
- } else if (jj_2_44(3)) {
+ break;
+ case NOT1:
jj_consume_token(NOT1);
- } else {
+ break;
+ default:
+ jj_la1[22] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -805,7 +908,8 @@
jjtree.closeNodeScope(jjtn002, true);
}
}
- } else if (jj_2_47(3)) {
+ break;
+ case EMPTY:
jj_consume_token(EMPTY);
AstEmpty jjtn003 = new AstEmpty(JJTEMPTY);
boolean jjtc003 = true;
@@ -831,9 +935,19 @@
jjtree.closeNodeScope(jjtn003, true);
}
}
- } else if (jj_2_48(3)) {
+ break;
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case TRUE:
+ case FALSE:
+ case NULL:
+ case LPAREN:
+ case IDENTIFIER:
Value();
- } else {
+ break;
+ default:
+ jj_la1[23] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -851,9 +965,13 @@
ValuePrefix();
label_9:
while (true) {
- if (jj_2_49(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case DOT:
+ case LBRACK:
;
- } else {
+ break;
+ default:
+ jj_la1[24] = jj_gen;
break label_9;
}
ValueSuffix();
@@ -884,11 +1002,21 @@
* For Literals, Variables, and Functions
*/
final public void ValuePrefix() throws ParseException {
- if (jj_2_50(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case TRUE:
+ case FALSE:
+ case NULL:
Literal();
- } else if (jj_2_51(3)) {
+ break;
+ case LPAREN:
+ case IDENTIFIER:
NonLiteral();
- } else {
+ break;
+ default:
+ jj_la1[25] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -899,11 +1027,15 @@
* Either dot or bracket notation
*/
final public void ValueSuffix() throws ParseException {
- if (jj_2_52(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case DOT:
DotSuffix();
- } else if (jj_2_53(3)) {
+ break;
+ case LBRACK:
BracketSuffix();
- } else {
+ break;
+ default:
+ jj_la1[26] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -970,17 +1102,27 @@
* For Grouped Operations, Identifiers, and Functions
*/
final public void NonLiteral() throws ParseException {
- if (jj_2_54(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case LPAREN:
jj_consume_token(LPAREN);
Expression();
jj_consume_token(RPAREN);
- } else if (jj_2_55(2147483647)) {
- Function();
- } else if (jj_2_56(3)) {
- Identifier();
- } else {
- jj_consume_token(-1);
- throw new ParseException();
+ break;
+ default:
+ jj_la1[27] = jj_gen;
+ if (jj_2_2(2147483647)) {
+ Function();
+ } else {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case IDENTIFIER:
+ Identifier();
+ break;
+ default:
+ jj_la1[28] = jj_gen;
+ jj_consume_token(-1);
+ throw new ParseException();
+ }
+ }
}
}
@@ -1016,7 +1158,7 @@
jjtree.openNodeScope(jjtn000);Token t0 = null;
Token t1 = null;
try {
- if (jj_2_57(3)) {
+ if (jj_2_3(2)) {
t0 = jj_consume_token(IDENTIFIER);
jj_consume_token(COLON);
} else {
@@ -1030,19 +1172,36 @@
jjtn000.setLocalName(t1.image);
}
jj_consume_token(LPAREN);
- if (jj_2_59(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case INTEGER_LITERAL:
+ case FLOATING_POINT_LITERAL:
+ case STRING_LITERAL:
+ case TRUE:
+ case FALSE:
+ case NULL:
+ case LPAREN:
+ case NOT0:
+ case NOT1:
+ case EMPTY:
+ case MINUS:
+ case IDENTIFIER:
Expression();
label_10:
while (true) {
- if (jj_2_58(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case COMMA:
;
- } else {
+ break;
+ default:
+ jj_la1[29] = jj_gen;
break label_10;
}
jj_consume_token(COMMA);
Expression();
}
- } else {
+ break;
+ default:
+ jj_la1[30] = jj_gen;
;
}
jj_consume_token(RPAREN);
@@ -1072,17 +1231,25 @@
* Reserved Keywords
*/
final public void Literal() throws ParseException {
- if (jj_2_60(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case TRUE:
+ case FALSE:
Boolean();
- } else if (jj_2_61(3)) {
+ break;
+ case FLOATING_POINT_LITERAL:
FloatingPoint();
- } else if (jj_2_62(3)) {
+ break;
+ case INTEGER_LITERAL:
Integer();
- } else if (jj_2_63(3)) {
+ break;
+ case STRING_LITERAL:
String();
- } else if (jj_2_64(3)) {
+ break;
+ case NULL:
Null();
- } else {
+ break;
+ default:
+ jj_la1[31] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1093,7 +1260,8 @@
* For 'true' 'false'
*/
final public void Boolean() throws ParseException {
- if (jj_2_65(3)) {
+ switch ((jj_ntk==-1)?jj_ntk():jj_ntk) {
+ case TRUE:
AstTrue jjtn001 = new AstTrue(JJTTRUE);
boolean jjtc001 = true;
jjtree.openNodeScope(jjtn001);
@@ -1104,7 +1272,8 @@
jjtree.closeNodeScope(jjtn001, true);
}
}
- } else if (jj_2_66(3)) {
+ break;
+ case FALSE:
AstFalse jjtn002 = new AstFalse(JJTFALSE);
boolean jjtc002 = true;
jjtree.openNodeScope(jjtn002);
@@ -1115,7 +1284,9 @@
jjtree.closeNodeScope(jjtn002, true);
}
}
- } else {
+ break;
+ default:
+ jj_la1[32] = jj_gen;
jj_consume_token(-1);
throw new ParseException();
}
@@ -1223,1140 +1394,506 @@
finally { jj_save(2, xla); }
}
- private boolean jj_2_4(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_4(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(3, xla); }
+ private boolean jj_3R_24() {
+ if (jj_3R_30()) return true;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_31()) { jj_scanpos = xsp; break; }
+ }
+ return false;
}
- private boolean jj_2_5(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_5(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(4, xla); }
+ private boolean jj_3R_12() {
+ if (jj_scan_token(IDENTIFIER)) return true;
+ if (jj_scan_token(COLON)) return true;
+ return false;
}
- private boolean jj_2_6(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_6(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(5, xla); }
- }
-
- private boolean jj_2_7(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_7(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(6, xla); }
- }
-
- private boolean jj_2_8(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_8(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(7, xla); }
- }
-
- private boolean jj_2_9(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_9(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(8, xla); }
- }
-
- private boolean jj_2_10(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_10(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(9, xla); }
- }
-
- private boolean jj_2_11(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_11(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(10, xla); }
- }
-
- private boolean jj_2_12(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_12(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(11, xla); }
- }
-
- private boolean jj_2_13(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_13(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(12, xla); }
- }
-
- private boolean jj_2_14(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_14(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(13, xla); }
- }
-
- private boolean jj_2_15(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_15(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(14, xla); }
- }
-
- private boolean jj_2_16(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_16(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(15, xla); }
- }
-
- private boolean jj_2_17(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_17(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(16, xla); }
- }
-
- private boolean jj_2_18(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_18(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(17, xla); }
- }
-
- private boolean jj_2_19(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_19(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(18, xla); }
- }
-
- private boolean jj_2_20(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_20(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(19, xla); }
- }
-
- private boolean jj_2_21(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_21(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(20, xla); }
- }
-
- private boolean jj_2_22(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_22(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(21, xla); }
- }
-
- private boolean jj_2_23(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_23(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(22, xla); }
- }
-
- private boolean jj_2_24(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_24(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(23, xla); }
- }
-
- private boolean jj_2_25(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_25(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(24, xla); }
- }
-
- private boolean jj_2_26(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_26(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(25, xla); }
- }
-
- private boolean jj_2_27(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_27(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(26, xla); }
- }
-
- private boolean jj_2_28(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_28(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(27, xla); }
- }
-
- private boolean jj_2_29(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_29(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(28, xla); }
- }
-
- private boolean jj_2_30(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_30(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(29, xla); }
- }
-
- private boolean jj_2_31(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_31(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(30, xla); }
- }
-
- private boolean jj_2_32(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_32(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(31, xla); }
- }
-
- private boolean jj_2_33(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_33(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(32, xla); }
- }
-
- private boolean jj_2_34(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_34(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(33, xla); }
- }
-
- private boolean jj_2_35(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_35(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(34, xla); }
- }
-
- private boolean jj_2_36(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_36(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(35, xla); }
- }
-
- private boolean jj_2_37(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_37(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(36, xla); }
- }
-
- private boolean jj_2_38(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_38(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(37, xla); }
- }
-
- private boolean jj_2_39(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_39(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(38, xla); }
- }
-
- private boolean jj_2_40(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_40(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(39, xla); }
- }
-
- private boolean jj_2_41(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_41(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(40, xla); }
- }
-
- private boolean jj_2_42(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_42(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(41, xla); }
- }
-
- private boolean jj_2_43(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_43(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(42, xla); }
- }
-
- private boolean jj_2_44(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_44(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(43, xla); }
- }
-
- private boolean jj_2_45(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_45(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(44, xla); }
- }
-
- private boolean jj_2_46(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_46(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(45, xla); }
- }
-
- private boolean jj_2_47(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_47(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(46, xla); }
- }
-
- private boolean jj_2_48(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_48(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(47, xla); }
- }
-
- private boolean jj_2_49(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_49(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(48, xla); }
- }
-
- private boolean jj_2_50(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_50(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(49, xla); }
- }
-
- private boolean jj_2_51(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_51(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(50, xla); }
- }
-
- private boolean jj_2_52(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_52(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(51, xla); }
- }
-
- private boolean jj_2_53(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_53(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(52, xla); }
- }
-
- private boolean jj_2_54(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_54(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(53, xla); }
- }
-
- private boolean jj_2_55(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_55(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(54, xla); }
- }
-
- private boolean jj_2_56(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_56(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(55, xla); }
- }
-
- private boolean jj_2_57(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_57(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(56, xla); }
- }
-
- private boolean jj_2_58(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_58(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(57, xla); }
- }
-
- private boolean jj_2_59(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_59(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(58, xla); }
- }
-
- private boolean jj_2_60(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_60(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(59, xla); }
- }
-
- private boolean jj_2_61(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_61(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(60, xla); }
- }
-
- private boolean jj_2_62(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_62(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(61, xla); }
- }
-
- private boolean jj_2_63(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_63(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(62, xla); }
- }
-
- private boolean jj_2_64(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_64(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(63, xla); }
- }
-
- private boolean jj_2_65(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_65(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(64, xla); }
- }
-
- private boolean jj_2_66(int xla) {
- jj_la = xla; jj_lastpos = jj_scanpos = token;
- try { return !jj_3_66(); }
- catch(LookaheadSuccess ls) { return true; }
- finally { jj_save(65, xla); }
- }
-
- private boolean jj_3R_19() {
- if (jj_3R_20()) return true;
+ private boolean jj_3_2() {
Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3_35()) { jj_scanpos = xsp; break; }
- }
+ xsp = jj_scanpos;
+ if (jj_3R_12()) jj_scanpos = xsp;
+ if (jj_scan_token(IDENTIFIER)) return true;
+ if (jj_scan_token(LPAREN)) return true;
return false;
}
- private boolean jj_3_34() {
+ private boolean jj_3R_33() {
if (jj_scan_token(MINUS)) return true;
- if (jj_3R_19()) return true;
return false;
}
- private boolean jj_3_33() {
- if (jj_scan_token(PLUS)) return true;
- if (jj_3R_19()) return true;
+ private boolean jj_3R_68() {
+ if (jj_scan_token(IDENTIFIER)) return true;
return false;
}
- private boolean jj_3_32() {
+ private boolean jj_3R_25() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_33()) {
+ if (jj_3R_32()) {
jj_scanpos = xsp;
- if (jj_3_34()) return true;
+ if (jj_3R_33()) return true;
}
return false;
}
- private boolean jj_3_27() {
- if (jj_scan_token(GE1)) return true;
+ private boolean jj_3R_32() {
+ if (jj_scan_token(PLUS)) return true;
return false;
}
- private boolean jj_3R_18() {
- if (jj_3R_19()) return true;
+ private boolean jj_3R_58() {
+ if (jj_3R_68()) return true;
+ return false;
+ }
+
+ private boolean jj_3R_20() {
+ if (jj_3R_24()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3_32()) { jj_scanpos = xsp; break; }
+ if (jj_3R_25()) { jj_scanpos = xsp; break; }
}
return false;
}
- private boolean jj_3_25() {
- if (jj_scan_token(LE1)) return true;
+ private boolean jj_3R_57() {
+ if (jj_3R_67()) return true;
return false;
}
- private boolean jj_3_23() {
- if (jj_scan_token(GT1)) return true;
+ private boolean jj_3R_56() {
+ if (jj_scan_token(LPAREN)) return true;
+ if (jj_3R_66()) return true;
return false;
}
- private boolean jj_3_26() {
- if (jj_scan_token(GE0)) return true;
- return false;
- }
-
- private boolean jj_3_21() {
- if (jj_scan_token(LT1)) return true;
- return false;
- }
-
- private boolean jj_3_31() {
+ private boolean jj_3R_48() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_26()) {
+ if (jj_3R_56()) {
jj_scanpos = xsp;
- if (jj_3_27()) return true;
+ if (jj_3R_57()) {
+ jj_scanpos = xsp;
+ if (jj_3R_58()) return true;
}
- if (jj_3R_18()) return true;
+ }
return false;
}
- private boolean jj_3_24() {
- if (jj_scan_token(LE0)) return true;
- return false;
- }
-
- private boolean jj_3R_34() {
- if (jj_scan_token(NULL)) return true;
- return false;
- }
-
- private boolean jj_3_30() {
+ private boolean jj_3R_29() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_24()) {
+ if (jj_scan_token(29)) {
jj_scanpos = xsp;
- if (jj_3_25()) return true;
+ if (jj_scan_token(30)) return true;
}
- if (jj_3R_18()) return true;
return false;
}
- private boolean jj_3_22() {
- if (jj_scan_token(GT0)) return true;
+ private boolean jj_3R_65() {
+ if (jj_scan_token(NULL)) return true;
return false;
}
- private boolean jj_3_29() {
+ private boolean jj_3R_28() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_22()) {
+ if (jj_scan_token(31)) {
jj_scanpos = xsp;
- if (jj_3_23()) return true;
+ if (jj_scan_token(32)) return true;
}
- if (jj_3R_18()) return true;
return false;
}
- private boolean jj_3_20() {
- if (jj_scan_token(LT0)) return true;
- return false;
- }
-
- private boolean jj_3_28() {
+ private boolean jj_3R_27() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_20()) {
+ if (jj_scan_token(25)) {
jj_scanpos = xsp;
- if (jj_3_21()) return true;
+ if (jj_scan_token(26)) return true;
}
- if (jj_3R_18()) return true;
return false;
}
- private boolean jj_3_19() {
+ private boolean jj_3R_21() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_28()) {
+ if (jj_3R_26()) {
jj_scanpos = xsp;
- if (jj_3_29()) {
+ if (jj_3R_27()) {
jj_scanpos = xsp;
- if (jj_3_30()) {
+ if (jj_3R_28()) {
jj_scanpos = xsp;
- if (jj_3_31()) return true;
+ if (jj_3R_29()) return true;
}
}
}
return false;
}
- private boolean jj_3_16() {
- if (jj_scan_token(NE1)) return true;
+ private boolean jj_3R_26() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_scan_token(27)) {
+ jj_scanpos = xsp;
+ if (jj_scan_token(28)) return true;
+ }
return false;
}
- private boolean jj_3R_33() {
- if (jj_scan_token(STRING_LITERAL)) return true;
+ private boolean jj_3R_60() {
+ if (jj_scan_token(LBRACK)) return true;
return false;
}
- private boolean jj_3R_17() {
- if (jj_3R_18()) return true;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3_19()) { jj_scanpos = xsp; break; }
- }
+ private boolean jj_3R_64() {
+ if (jj_scan_token(STRING_LITERAL)) return true;
return false;
}
- private boolean jj_3_14() {
- if (jj_scan_token(EQ1)) return true;
+ private boolean jj_3R_50() {
+ if (jj_3R_60()) return true;
return false;
}
- private boolean jj_3_11() {
- if (jj_scan_token(AND1)) return true;
+ private boolean jj_3R_18() {
+ if (jj_3R_20()) return true;
+ Token xsp;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_21()) { jj_scanpos = xsp; break; }
+ }
return false;
}
- private boolean jj_3_15() {
- if (jj_scan_token(NE0)) return true;
+ private boolean jj_3R_59() {
+ if (jj_scan_token(DOT)) return true;
return false;
}
- private boolean jj_3_18() {
+ private boolean jj_3R_23() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_15()) {
+ if (jj_scan_token(35)) {
jj_scanpos = xsp;
- if (jj_3_16()) return true;
+ if (jj_scan_token(36)) return true;
}
- if (jj_3R_17()) return true;
return false;
}
- private boolean jj_3_13() {
- if (jj_scan_token(EQ0)) return true;
+ private boolean jj_3R_63() {
+ if (jj_scan_token(INTEGER_LITERAL)) return true;
return false;
}
- private boolean jj_3R_32() {
- if (jj_scan_token(INTEGER_LITERAL)) return true;
+ private boolean jj_3R_22() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_scan_token(33)) {
+ jj_scanpos = xsp;
+ if (jj_scan_token(34)) return true;
+ }
return false;
}
- private boolean jj_3_12() {
+ private boolean jj_3R_19() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_17()) {
+ if (jj_3R_22()) {
jj_scanpos = xsp;
- if (jj_3_18()) return true;
+ if (jj_3R_23()) return true;
}
return false;
}
- private boolean jj_3_17() {
+ private boolean jj_3R_17() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_13()) {
+ if (jj_scan_token(39)) {
jj_scanpos = xsp;
- if (jj_3_14()) return true;
+ if (jj_scan_token(40)) return true;
}
- if (jj_3R_17()) return true;
return false;
}
- private boolean jj_3_10() {
- if (jj_scan_token(AND0)) return true;
+ private boolean jj_3R_49() {
+ if (jj_3R_59()) return true;
return false;
}
- private boolean jj_3_9() {
+ private boolean jj_3R_46() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_10()) {
+ if (jj_3R_49()) {
jj_scanpos = xsp;
- if (jj_3_11()) return true;
+ if (jj_3R_50()) return true;
}
- if (jj_3R_16()) return true;
return false;
}
private boolean jj_3R_16() {
- if (jj_3R_17()) return true;
+ if (jj_3R_18()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3_12()) { jj_scanpos = xsp; break; }
+ if (jj_3R_19()) { jj_scanpos = xsp; break; }
}
return false;
}
- private boolean jj_3R_31() {
+ private boolean jj_3R_62() {
if (jj_scan_token(FLOATING_POINT_LITERAL)) return true;
return false;
}
- private boolean jj_3_8() {
- if (jj_scan_token(OR1)) return true;
+ private boolean jj_3R_43() {
+ if (jj_3R_46()) return true;
return false;
}
- private boolean jj_3R_15() {
- if (jj_3R_16()) return true;
- Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3_9()) { jj_scanpos = xsp; break; }
- }
+ private boolean jj_3R_45() {
+ if (jj_3R_48()) return true;
return false;
}
- private boolean jj_3_66() {
+ private boolean jj_3R_70() {
if (jj_scan_token(FALSE)) return true;
return false;
}
- private boolean jj_3_7() {
- if (jj_scan_token(OR0)) return true;
+ private boolean jj_3R_44() {
+ if (jj_3R_47()) return true;
return false;
}
- private boolean jj_3_6() {
+ private boolean jj_3R_14() {
+ if (jj_3R_16()) return true;
Token xsp;
- xsp = jj_scanpos;
- if (jj_3_7()) {
- jj_scanpos = xsp;
- if (jj_3_8()) return true;
+ while (true) {
+ xsp = jj_scanpos;
+ if (jj_3R_17()) { jj_scanpos = xsp; break; }
}
- if (jj_3R_15()) return true;
return false;
}
- private boolean jj_3_58() {
- if (jj_scan_token(COMMA)) return true;
- if (jj_3R_27()) return true;
+ private boolean jj_3R_42() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_3R_44()) {
+ jj_scanpos = xsp;
+ if (jj_3R_45()) return true;
+ }
return false;
}
- private boolean jj_3R_30() {
+ private boolean jj_3R_15() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_65()) {
+ if (jj_scan_token(41)) {
jj_scanpos = xsp;
- if (jj_3_66()) return true;
+ if (jj_scan_token(42)) return true;
}
return false;
}
- private boolean jj_3_65() {
+ private boolean jj_3R_69() {
if (jj_scan_token(TRUE)) return true;
return false;
}
- private boolean jj_3R_35() {
- if (jj_3R_15()) return true;
+ private boolean jj_3R_61() {
Token xsp;
- while (true) {
- xsp = jj_scanpos;
- if (jj_3_6()) { jj_scanpos = xsp; break; }
+ xsp = jj_scanpos;
+ if (jj_3R_69()) {
+ jj_scanpos = xsp;
+ if (jj_3R_70()) return true;
}
return false;
}
- private boolean jj_3_64() {
- if (jj_3R_34()) return true;
- return false;
- }
-
- private boolean jj_3_5() {
- if (jj_scan_token(QUESTIONMARK)) return true;
+ private boolean jj_3R_13() {
if (jj_3R_14()) return true;
- if (jj_scan_token(COLON)) return true;
- return false;
- }
-
- private boolean jj_3_63() {
- if (jj_3R_33()) return true;
- return false;
- }
-
- private boolean jj_3_62() {
- if (jj_3R_32()) return true;
- return false;
- }
-
- private boolean jj_3_61() {
- if (jj_3R_31()) return true;
- return false;
- }
-
- private boolean jj_3_59() {
- if (jj_3R_27()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3_58()) { jj_scanpos = xsp; break; }
+ if (jj_3R_15()) { jj_scanpos = xsp; break; }
}
return false;
}
- private boolean jj_3R_23() {
+ private boolean jj_3R_41() {
+ if (jj_3R_42()) return true;
Token xsp;
- xsp = jj_scanpos;
- if (jj_3_60()) {
- jj_scanpos = xsp;
- if (jj_3_61()) {
- jj_scanpos = xsp;
- if (jj_3_62()) {
- jj_scanpos = xsp;
- if (jj_3_63()) {
- jj_scanpos = xsp;
- if (jj_3_64()) return true;
- }
- }
- }
- }
- return false;
- }
-
- private boolean jj_3_4() {
- if (jj_3R_13()) return true;
- return false;
- }
-
- private boolean jj_3_60() {
- if (jj_3R_30()) return true;
- return false;
- }
-
- private boolean jj_3R_14() {
- if (jj_3R_35()) return true;
- Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3_5()) { jj_scanpos = xsp; break; }
+ if (jj_3R_43()) { jj_scanpos = xsp; break; }
}
return false;
}
- private boolean jj_3R_27() {
- if (jj_3R_14()) return true;
+ private boolean jj_3R_55() {
+ if (jj_3R_65()) return true;
return false;
}
- private boolean jj_3_57() {
- if (jj_scan_token(IDENTIFIER)) return true;
- if (jj_scan_token(COLON)) return true;
+ private boolean jj_3R_54() {
+ if (jj_3R_64()) return true;
return false;
}
- private boolean jj_3R_38() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3_57()) jj_scanpos = xsp;
- if (jj_scan_token(IDENTIFIER)) return true;
- if (jj_scan_token(LPAREN)) return true;
- xsp = jj_scanpos;
- if (jj_3_59()) jj_scanpos = xsp;
- if (jj_scan_token(RPAREN)) return true;
+ private boolean jj_3R_53() {
+ if (jj_3R_63()) return true;
return false;
}
- private boolean jj_3R_12() {
- if (jj_scan_token(START_DYNAMIC_EXPRESSION)) return true;
- if (jj_3R_27()) return true;
- if (jj_scan_token(END_EXPRESSION)) return true;
- return false;
- }
-
- private boolean jj_3_3() {
- if (jj_3R_12()) return true;
- return false;
- }
-
- private boolean jj_3R_28() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ private boolean jj_3_1() {
+ if (jj_scan_token(QUESTIONMARK)) return true;
+ if (jj_3R_11()) return true;
if (jj_scan_token(COLON)) return true;
return false;
}
- private boolean jj_3R_11() {
- if (jj_scan_token(START_DEFERRED_EXPRESSION)) return true;
- if (jj_3R_27()) return true;
- if (jj_scan_token(END_EXPRESSION)) return true;
+ private boolean jj_3R_52() {
+ if (jj_3R_62()) return true;
return false;
}
- private boolean jj_3_55() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3R_28()) jj_scanpos = xsp;
- if (jj_scan_token(IDENTIFIER)) return true;
- if (jj_scan_token(LPAREN)) return true;
+ private boolean jj_3R_37() {
+ if (jj_3R_41()) return true;
return false;
}
- private boolean jj_3R_29() {
- if (jj_scan_token(IDENTIFIER)) return true;
+ private boolean jj_3R_51() {
+ if (jj_3R_61()) return true;
return false;
}
- private boolean jj_3R_13() {
- if (jj_scan_token(LITERAL_EXPRESSION)) return true;
- return false;
- }
-
- private boolean jj_3_56() {
- if (jj_3R_29()) return true;
- return false;
- }
-
- private boolean jj_3R_37() {
- if (jj_3R_38()) return true;
- return false;
- }
-
- private boolean jj_3R_24() {
+ private boolean jj_3R_47() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_54()) {
+ if (jj_3R_51()) {
jj_scanpos = xsp;
- if (jj_3R_37()) {
+ if (jj_3R_52()) {
jj_scanpos = xsp;
- if (jj_3_56()) return true;
- }
- }
- return false;
- }
-
- private boolean jj_3_54() {
- if (jj_scan_token(LPAREN)) return true;
- if (jj_3R_27()) return true;
- if (jj_scan_token(RPAREN)) return true;
- return false;
- }
-
- private boolean jj_3_2() {
- if (jj_3R_11()) return true;
- return false;
- }
-
- private boolean jj_3_1() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3_2()) {
+ if (jj_3R_53()) {
jj_scanpos = xsp;
- if (jj_3_3()) {
+ if (jj_3R_54()) {
jj_scanpos = xsp;
- if (jj_3_4()) return true;
+ if (jj_3R_55()) return true;
}
}
- return false;
- }
-
- private boolean jj_3R_26() {
- if (jj_scan_token(LBRACK)) return true;
- if (jj_3R_27()) return true;
- if (jj_scan_token(RBRACK)) return true;
- return false;
- }
-
- private boolean jj_3_53() {
- if (jj_3R_26()) return true;
- return false;
- }
-
- private boolean jj_3R_25() {
- if (jj_scan_token(DOT)) return true;
- if (jj_scan_token(IDENTIFIER)) return true;
- return false;
- }
-
- private boolean jj_3R_22() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3_52()) {
- jj_scanpos = xsp;
- if (jj_3_53()) return true;
}
+ }
return false;
}
- private boolean jj_3_52() {
- if (jj_3R_25()) return true;
- return false;
- }
-
- private boolean jj_3_49() {
- if (jj_3R_22()) return true;
- return false;
- }
-
- private boolean jj_3_51() {
- if (jj_3R_24()) return true;
- return false;
- }
-
private boolean jj_3R_36() {
- Token xsp;
- xsp = jj_scanpos;
- if (jj_3_50()) {
- jj_scanpos = xsp;
- if (jj_3_51()) return true;
- }
+ if (jj_scan_token(EMPTY)) return true;
+ if (jj_3R_30()) return true;
return false;
}
- private boolean jj_3_50() {
- if (jj_3R_23()) return true;
- return false;
- }
-
- private boolean jj_3R_21() {
- if (jj_3R_36()) return true;
+ private boolean jj_3R_11() {
+ if (jj_3R_13()) return true;
Token xsp;
while (true) {
xsp = jj_scanpos;
- if (jj_3_49()) { jj_scanpos = xsp; break; }
+ if (jj_3_1()) { jj_scanpos = xsp; break; }
}
return false;
}
- private boolean jj_3_44() {
- if (jj_scan_token(NOT1)) return true;
- return false;
- }
-
- private boolean jj_3_48() {
- if (jj_3R_21()) return true;
- return false;
- }
-
- private boolean jj_3_47() {
- if (jj_scan_token(EMPTY)) return true;
- if (jj_3R_20()) return true;
- return false;
- }
-
- private boolean jj_3_43() {
- if (jj_scan_token(NOT0)) return true;
- return false;
- }
-
- private boolean jj_3_46() {
+ private boolean jj_3R_35() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_43()) {
+ if (jj_scan_token(37)) {
jj_scanpos = xsp;
- if (jj_3_44()) return true;
+ if (jj_scan_token(38)) return true;
}
- if (jj_3R_20()) return true;
+ if (jj_3R_30()) return true;
return false;
}
- private boolean jj_3R_20() {
+ private boolean jj_3R_30() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_45()) {
+ if (jj_3R_34()) {
jj_scanpos = xsp;
- if (jj_3_46()) {
+ if (jj_3R_35()) {
jj_scanpos = xsp;
- if (jj_3_47()) {
+ if (jj_3R_36()) {
jj_scanpos = xsp;
- if (jj_3_48()) return true;
+ if (jj_3R_37()) return true;
}
}
}
return false;
}
- private boolean jj_3_45() {
+ private boolean jj_3R_34() {
if (jj_scan_token(MINUS)) return true;
- if (jj_3R_20()) return true;
+ if (jj_3R_30()) return true;
return false;
}
- private boolean jj_3_39() {
- if (jj_scan_token(MOD1)) return true;
+ private boolean jj_3R_66() {
+ if (jj_3R_11()) return true;
return false;
}
- private boolean jj_3_37() {
- if (jj_scan_token(DIV1)) return true;
+ private boolean jj_3R_40() {
+ Token xsp;
+ xsp = jj_scanpos;
+ if (jj_scan_token(51)) {
+ jj_scanpos = xsp;
+ if (jj_scan_token(52)) return true;
+ }
return false;
}
- private boolean jj_3_38() {
- if (jj_scan_token(MOD0)) return true;
- return false;
- }
-
- private boolean jj_3_36() {
- if (jj_scan_token(DIV0)) return true;
- return false;
- }
-
- private boolean jj_3_42() {
+ private boolean jj_3R_39() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_38()) {
+ if (jj_scan_token(49)) {
jj_scanpos = xsp;
- if (jj_3_39()) return true;
+ if (jj_scan_token(50)) return true;
}
- if (jj_3R_20()) return true;
return false;
}
- private boolean jj_3_41() {
+ private boolean jj_3_3() {
+ if (jj_scan_token(IDENTIFIER)) return true;
+ if (jj_scan_token(COLON)) return true;
+ return false;
+ }
+
+ private boolean jj_3R_67() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_36()) {
- jj_scanpos = xsp;
- if (jj_3_37()) return true;
- }
- if (jj_3R_20()) return true;
+ if (jj_3_3()) jj_scanpos = xsp;
+ if (jj_scan_token(IDENTIFIER)) return true;
+ if (jj_scan_token(LPAREN)) return true;
return false;
}
- private boolean jj_3_35() {
+ private boolean jj_3R_31() {
Token xsp;
xsp = jj_scanpos;
- if (jj_3_40()) {
+ if (jj_3R_38()) {
jj_scanpos = xsp;
- if (jj_3_41()) {
+ if (jj_3R_39()) {
jj_scanpos = xsp;
- if (jj_3_42()) return true;
+ if (jj_3R_40()) return true;
}
}
return false;
}
- private boolean jj_3_40() {
+ private boolean jj_3R_38() {
if (jj_scan_token(MULT)) return true;
- if (jj_3R_20()) return true;
return false;
}
@@ -2371,7 +1908,7 @@
private Token jj_scanpos, jj_lastpos;
private int jj_la;
private int jj_gen;
- final private int[] jj_la1 = new int[0];
+ final private int[] jj_la1 = new int[33];
static private int[] jj_la1_0;
static private int[] jj_la1_1;
static {
@@ -2379,12 +1916,12 @@
jj_la1_init_1();
}
private static void jj_la1_init_0() {
- jj_la1_0 = new int[] {};
+ jj_la1_0 = new int[]
{0xe,0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xfe000000,0x18000000,0x6000000,0x80000000,0x60000000,0xfe000000,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d600,0x240000,0x9d600,0x240000,0x80000,0x0,0x1000000,0x9d600,0x1d600,0xc000,};
}
private static void jj_la1_init_1() {
- jj_la1_1 = new int[] {};
+ jj_la1_1 = new int[]
{0x0,0x0,0x600,0x600,0x180,0x180,0x1e,0x6,0x18,0x1e,0x1,0x0,0x0,0x1,0x0,0x1,0xc000,0xc000,0x1e2000,0x60000,0x180000,0x1e2000,0x60,0x208860,0x0,0x200000,0x0,0x0,0x200000,0x0,0x208860,0x0,0x0,};
}
- final private JJCalls[] jj_2_rtns = new JJCalls[66];
+ final private JJCalls[] jj_2_rtns = new JJCalls[3];
private boolean jj_rescan = false;
private int jj_gc = 0;
@@ -2399,7 +1936,7 @@
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 0; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 33; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -2415,7 +1952,7 @@
jj_ntk = -1;
jjtree.reset();
jj_gen = 0;
- for (int i = 0; i < 0; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 33; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -2426,7 +1963,7 @@
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 0; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 33; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -2438,7 +1975,7 @@
jj_ntk = -1;
jjtree.reset();
jj_gen = 0;
- for (int i = 0; i < 0; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 33; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -2448,7 +1985,7 @@
token = new Token();
jj_ntk = -1;
jj_gen = 0;
- for (int i = 0; i < 0; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 33; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -2459,7 +1996,7 @@
jj_ntk = -1;
jjtree.reset();
jj_gen = 0;
- for (int i = 0; i < 0; i++) jj_la1[i] = -1;
+ for (int i = 0; i < 33; i++) jj_la1[i] = -1;
for (int i = 0; i < jj_2_rtns.length; i++) jj_2_rtns[i] = new JJCalls();
}
@@ -2576,7 +2113,7 @@
la1tokens[jj_kind] = true;
jj_kind = -1;
}
- for (int i = 0; i < 0; i++) {
+ for (int i = 0; i < 33; i++) {
if (jj_la1[i] == jj_gen) {
for (int j = 0; j < 32; j++) {
if ((jj_la1_0[i] & (1<<j)) != 0) {
@@ -2615,7 +2152,7 @@
private void jj_rescan_token() {
jj_rescan = true;
- for (int i = 0; i < 66; i++) {
+ for (int i = 0; i < 3; i++) {
try {
JJCalls p = jj_2_rtns[i];
do {
@@ -2625,69 +2162,6 @@
case 0: jj_3_1(); break;
case 1: jj_3_2(); break;
case 2: jj_3_3(); break;
- case 3: jj_3_4(); break;
- case 4: jj_3_5(); break;
- case 5: jj_3_6(); break;
- case 6: jj_3_7(); break;
- case 7: jj_3_8(); break;
- case 8: jj_3_9(); break;
- case 9: jj_3_10(); break;
- case 10: jj_3_11(); break;
- case 11: jj_3_12(); break;
- case 12: jj_3_13(); break;
- case 13: jj_3_14(); break;
- case 14: jj_3_15(); break;
- case 15: jj_3_16(); break;
- case 16: jj_3_17(); break;
- case 17: jj_3_18(); break;
- case 18: jj_3_19(); break;
- case 19: jj_3_20(); break;
- case 20: jj_3_21(); break;
- case 21: jj_3_22(); break;
- case 22: jj_3_23(); break;
- case 23: jj_3_24(); break;
- case 24: jj_3_25(); break;
- case 25: jj_3_26(); break;
- case 26: jj_3_27(); break;
- case 27: jj_3_28(); break;
- case 28: jj_3_29(); break;
- case 29: jj_3_30(); break;
- case 30: jj_3_31(); break;
- case 31: jj_3_32(); break;
- case 32: jj_3_33(); break;
- case 33: jj_3_34(); break;
- case 34: jj_3_35(); break;
- case 35: jj_3_36(); break;
- case 36: jj_3_37(); break;
- case 37: jj_3_38(); break;
- case 38: jj_3_39(); break;
- case 39: jj_3_40(); break;
- case 40: jj_3_41(); break;
- case 41: jj_3_42(); break;
- case 42: jj_3_43(); break;
- case 43: jj_3_44(); break;
- case 44: jj_3_45(); break;
- case 45: jj_3_46(); break;
- case 46: jj_3_47(); break;
- case 47: jj_3_48(); break;
- case 48: jj_3_49(); break;
- case 49: jj_3_50(); break;
- case 50: jj_3_51(); break;
- case 51: jj_3_52(); break;
- case 52: jj_3_53(); break;
- case 53: jj_3_54(); break;
- case 54: jj_3_55(); break;
- case 55: jj_3_56(); break;
- case 56: jj_3_57(); break;
- case 57: jj_3_58(); break;
- case 58: jj_3_59(); break;
- case 59: jj_3_60(); break;
- case 60: jj_3_61(); break;
- case 61: jj_3_62(); break;
- case 62: jj_3_63(); break;
- case 63: jj_3_64(); break;
- case 64: jj_3_65(); break;
- case 65: jj_3_66(); break;
}
}
p = p.next;
Modified: trunk/java/org/apache/el/parser/ELParserConstants.java
===================================================================
--- trunk/java/org/apache/el/parser/ELParserConstants.java 2008-09-19 02:11:27 UTC (rev
785)
+++ trunk/java/org/apache/el/parser/ELParserConstants.java 2008-09-19 02:13:40 UTC (rev
786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JJTree&JavaCC: Do not edit this line. ELParserConstants.java */
package org.apache.el.parser;
Modified: trunk/java/org/apache/el/parser/ELParserTokenManager.java
===================================================================
--- trunk/java/org/apache/el/parser/ELParserTokenManager.java 2008-09-19 02:11:27 UTC (rev
785)
+++ trunk/java/org/apache/el/parser/ELParserTokenManager.java 2008-09-19 02:13:40 UTC (rev
786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JJTree&JavaCC: Do not edit this line. ELParserTokenManager.java */
package org.apache.el.parser;
import java.io.StringReader;
Modified: trunk/java/org/apache/el/parser/ELParserTreeConstants.java
===================================================================
--- trunk/java/org/apache/el/parser/ELParserTreeConstants.java 2008-09-19 02:11:27 UTC
(rev 785)
+++ trunk/java/org/apache/el/parser/ELParserTreeConstants.java 2008-09-19 02:13:40 UTC
(rev 786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JavaCC: Do not edit this line. ELParserTreeConstants.java Version 4.1 */
package org.apache.el.parser;
Modified: trunk/java/org/apache/el/parser/JJTELParserState.java
===================================================================
--- trunk/java/org/apache/el/parser/JJTELParserState.java 2008-09-19 02:11:27 UTC (rev
785)
+++ trunk/java/org/apache/el/parser/JJTELParserState.java 2008-09-19 02:13:40 UTC (rev
786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JavaCC: Do not edit this line. JJTELParserState.java Version 4.1 */
package org.apache.el.parser;
Modified: trunk/java/org/apache/el/parser/ParseException.java
===================================================================
--- trunk/java/org/apache/el/parser/ParseException.java 2008-09-19 02:11:27 UTC (rev 785)
+++ trunk/java/org/apache/el/parser/ParseException.java 2008-09-19 02:13:40 UTC (rev 786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JavaCC: Do not edit this line. ParseException.java Version 4.1 */
/* JavaCCOptions:KEEP_LINE_COL=null */
package org.apache.el.parser;
Modified: trunk/java/org/apache/el/parser/SimpleCharStream.java
===================================================================
--- trunk/java/org/apache/el/parser/SimpleCharStream.java 2008-09-19 02:11:27 UTC (rev
785)
+++ trunk/java/org/apache/el/parser/SimpleCharStream.java 2008-09-19 02:13:40 UTC (rev
786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JavaCC: Do not edit this line. SimpleCharStream.java Version 4.1 */
/* JavaCCOptions:STATIC=false */
package org.apache.el.parser;
Modified: trunk/java/org/apache/el/parser/Token.java
===================================================================
--- trunk/java/org/apache/el/parser/Token.java 2008-09-19 02:11:27 UTC (rev 785)
+++ trunk/java/org/apache/el/parser/Token.java 2008-09-19 02:13:40 UTC (rev 786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JavaCC: Do not edit this line. Token.java Version 4.1 */
/* JavaCCOptions:TOKEN_EXTENDS=,KEEP_LINE_COL=null */
package org.apache.el.parser;
Modified: trunk/java/org/apache/el/parser/TokenMgrError.java
===================================================================
--- trunk/java/org/apache/el/parser/TokenMgrError.java 2008-09-19 02:11:27 UTC (rev 785)
+++ trunk/java/org/apache/el/parser/TokenMgrError.java 2008-09-19 02:13:40 UTC (rev 786)
@@ -1,19 +1,3 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *
http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
/* Generated By:JavaCC: Do not edit this line. TokenMgrError.java Version 4.1 */
/* JavaCCOptions: */
package org.apache.el.parser;