Clover coverage report - Java Language Levels Test Coverage (javalanglevels-20120305-r5436)
Coverage timestamp: Sun Mar 4 2012 22:02:46 CST
file stats: LOC: 742   Methods: 183
NCLOC: 550   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
JExpressionIFAbstractVisitor_void.java - 0% 0% 0%
coverage
 1    package edu.rice.cs.javalanglevels.tree;
 2   
 3    /** An abstract implementation of a visitor over JExpressionIF that does not return a value.
 4    ** This visitor implements the visitor interface with methods that
 5    ** execute defaultCase. These methods can be overriden
 6    ** in order to achieve different behavior for particular cases.
 7    **/
 8    public class JExpressionIFAbstractVisitor_void implements JExpressionIFVisitor_void {
 9    /* Methods to visit an item. */
 10  0 public void forJExpression(JExpression that) {
 11  0 defaultCase(that);
 12    }
 13   
 14  0 public void forSourceFile(SourceFile that) {
 15  0 forJExpression(that);
 16    }
 17   
 18  0 public void forModifiersAndVisibility(ModifiersAndVisibility that) {
 19  0 forJExpression(that);
 20    }
 21   
 22  0 public void forCompoundWord(CompoundWord that) {
 23  0 forJExpression(that);
 24    }
 25   
 26  0 public void forWord(Word that) {
 27  0 forJExpression(that);
 28    }
 29   
 30  0 public void forTypeDefBase(TypeDefBase that) {
 31  0 forJExpression(that);
 32    }
 33   
 34  0 public void forClassDef(ClassDef that) {
 35  0 forTypeDefBase(that);
 36    }
 37   
 38  0 public void forInnerClassDef(InnerClassDef that) {
 39  0 forClassDef(that);
 40    }
 41   
 42  0 public void forInterfaceDef(InterfaceDef that) {
 43  0 forTypeDefBase(that);
 44    }
 45   
 46  0 public void forInnerInterfaceDef(InnerInterfaceDef that) {
 47  0 forInterfaceDef(that);
 48    }
 49   
 50  0 public void forConstructorDef(ConstructorDef that) {
 51  0 forJExpression(that);
 52    }
 53   
 54  0 public void forInitializer(Initializer that) {
 55  0 forJExpression(that);
 56    }
 57   
 58  0 public void forInstanceInitializer(InstanceInitializer that) {
 59  0 forInitializer(that);
 60    }
 61   
 62  0 public void forStaticInitializer(StaticInitializer that) {
 63  0 forInitializer(that);
 64    }
 65   
 66  0 public void forPackageStatement(PackageStatement that) {
 67  0 forJExpression(that);
 68    }
 69   
 70  0 public void forImportStatement(ImportStatement that) {
 71  0 forJExpression(that);
 72    }
 73   
 74  0 public void forClassImportStatement(ClassImportStatement that) {
 75  0 forImportStatement(that);
 76    }
 77   
 78  0 public void forPackageImportStatement(PackageImportStatement that) {
 79  0 forImportStatement(that);
 80    }
 81   
 82  0 public void forStatement(Statement that) {
 83  0 forJExpression(that);
 84    }
 85   
 86  0 public void forLabeledStatement(LabeledStatement that) {
 87  0 forStatement(that);
 88    }
 89   
 90  0 public void forBlock(Block that) {
 91  0 forStatement(that);
 92    }
 93   
 94  0 public void forExpressionStatement(ExpressionStatement that) {
 95  0 forStatement(that);
 96    }
 97   
 98  0 public void forSwitchStatement(SwitchStatement that) {
 99  0 forStatement(that);
 100    }
 101   
 102  0 public void forIfThenStatement(IfThenStatement that) {
 103  0 forStatement(that);
 104    }
 105   
 106  0 public void forIfThenElseStatement(IfThenElseStatement that) {
 107  0 forIfThenStatement(that);
 108    }
 109   
 110  0 public void forWhileStatement(WhileStatement that) {
 111  0 forStatement(that);
 112    }
 113   
 114  0 public void forDoStatement(DoStatement that) {
 115  0 forStatement(that);
 116    }
 117   
 118  0 public void forForStatement(ForStatement that) {
 119  0 forStatement(that);
 120    }
 121   
 122  0 public void forBreakStatement(BreakStatement that) {
 123  0 forStatement(that);
 124    }
 125   
 126  0 public void forLabeledBreakStatement(LabeledBreakStatement that) {
 127  0 forBreakStatement(that);
 128    }
 129   
 130  0 public void forUnlabeledBreakStatement(UnlabeledBreakStatement that) {
 131  0 forBreakStatement(that);
 132    }
 133   
 134  0 public void forContinueStatement(ContinueStatement that) {
 135  0 forStatement(that);
 136    }
 137   
 138  0 public void forLabeledContinueStatement(LabeledContinueStatement that) {
 139  0 forContinueStatement(that);
 140    }
 141   
 142  0 public void forUnlabeledContinueStatement(UnlabeledContinueStatement that) {
 143  0 forContinueStatement(that);
 144    }
 145   
 146  0 public void forReturnStatement(ReturnStatement that) {
 147  0 forStatement(that);
 148    }
 149   
 150  0 public void forVoidReturnStatement(VoidReturnStatement that) {
 151  0 forReturnStatement(that);
 152    }
 153   
 154  0 public void forValueReturnStatement(ValueReturnStatement that) {
 155  0 forReturnStatement(that);
 156    }
 157   
 158  0 public void forThrowStatement(ThrowStatement that) {
 159  0 forStatement(that);
 160    }
 161   
 162  0 public void forSynchronizedStatement(SynchronizedStatement that) {
 163  0 forStatement(that);
 164    }
 165   
 166  0 public void forTryCatchStatement(TryCatchStatement that) {
 167  0 forStatement(that);
 168    }
 169   
 170  0 public void forTryCatchFinallyStatement(TryCatchFinallyStatement that) {
 171  0 forTryCatchStatement(that);
 172    }
 173   
 174  0 public void forNormalTryCatchStatement(NormalTryCatchStatement that) {
 175  0 forTryCatchStatement(that);
 176    }
 177   
 178  0 public void forEmptyStatement(EmptyStatement that) {
 179  0 forStatement(that);
 180    }
 181   
 182  0 public void forMethodDef(MethodDef that) {
 183  0 forJExpression(that);
 184    }
 185   
 186  0 public void forConcreteMethodDef(ConcreteMethodDef that) {
 187  0 forMethodDef(that);
 188    }
 189   
 190  0 public void forAbstractMethodDef(AbstractMethodDef that) {
 191  0 forMethodDef(that);
 192    }
 193   
 194  0 public void forFormalParameter(FormalParameter that) {
 195  0 forJExpression(that);
 196    }
 197   
 198  0 public void forVariableDeclaration(VariableDeclaration that) {
 199  0 forJExpression(that);
 200    }
 201   
 202  0 public void forVariableDeclarator(VariableDeclarator that) {
 203  0 forJExpression(that);
 204    }
 205   
 206  0 public void forUninitializedVariableDeclarator(UninitializedVariableDeclarator that) {
 207  0 forVariableDeclarator(that);
 208    }
 209   
 210  0 public void forInitializedVariableDeclarator(InitializedVariableDeclarator that) {
 211  0 forVariableDeclarator(that);
 212    }
 213   
 214  0 public void forTypeParameter(TypeParameter that) {
 215  0 forJExpression(that);
 216    }
 217   
 218  0 public void forArrayInitializer(ArrayInitializer that) {
 219  0 forJExpression(that);
 220    }
 221   
 222  0 public void forType(Type that) {
 223  0 forJExpression(that);
 224    }
 225   
 226  0 public void forPrimitiveType(PrimitiveType that) {
 227  0 forType(that);
 228    }
 229   
 230  0 public void forArrayType(ArrayType that) {
 231  0 forType(that);
 232    }
 233   
 234  0 public void forReferenceType(ReferenceType that) {
 235  0 forType(that);
 236    }
 237   
 238  0 public void forMemberType(MemberType that) {
 239  0 forReferenceType(that);
 240    }
 241   
 242  0 public void forClassOrInterfaceType(ClassOrInterfaceType that) {
 243  0 forReferenceType(that);
 244    }
 245   
 246  0 public void forTypeVariable(TypeVariable that) {
 247  0 forReferenceType(that);
 248    }
 249   
 250  0 public void forVoidReturn(VoidReturn that) {
 251  0 forJExpression(that);
 252    }
 253   
 254  0 public void forSwitchCase(SwitchCase that) {
 255  0 forJExpression(that);
 256    }
 257   
 258  0 public void forLabeledCase(LabeledCase that) {
 259  0 forSwitchCase(that);
 260    }
 261   
 262  0 public void forDefaultCase(DefaultCase that) {
 263  0 forSwitchCase(that);
 264    }
 265   
 266  0 public void forCatchBlock(CatchBlock that) {
 267  0 forJExpression(that);
 268    }
 269   
 270  0 public void forExpression(Expression that) {
 271  0 forJExpression(that);
 272    }
 273   
 274  0 public void forAssignmentExpression(AssignmentExpression that) {
 275  0 forExpression(that);
 276    }
 277   
 278  0 public void forSimpleAssignmentExpression(SimpleAssignmentExpression that) {
 279  0 forAssignmentExpression(that);
 280    }
 281   
 282  0 public void forPlusAssignmentExpression(PlusAssignmentExpression that) {
 283  0 forAssignmentExpression(that);
 284    }
 285   
 286  0 public void forNumericAssignmentExpression(NumericAssignmentExpression that) {
 287  0 forAssignmentExpression(that);
 288    }
 289   
 290  0 public void forMinusAssignmentExpression(MinusAssignmentExpression that) {
 291  0 forNumericAssignmentExpression(that);
 292    }
 293   
 294  0 public void forMultiplyAssignmentExpression(MultiplyAssignmentExpression that) {
 295  0 forNumericAssignmentExpression(that);
 296    }
 297   
 298  0 public void forDivideAssignmentExpression(DivideAssignmentExpression that) {
 299  0 forNumericAssignmentExpression(that);
 300    }
 301   
 302  0 public void forModAssignmentExpression(ModAssignmentExpression that) {
 303  0 forNumericAssignmentExpression(that);
 304    }
 305   
 306  0 public void forShiftAssignmentExpression(ShiftAssignmentExpression that) {
 307  0 forAssignmentExpression(that);
 308    }
 309   
 310  0 public void forLeftShiftAssignmentExpression(LeftShiftAssignmentExpression that) {
 311  0 forShiftAssignmentExpression(that);
 312    }
 313   
 314  0 public void forRightSignedShiftAssignmentExpression(RightSignedShiftAssignmentExpression that) {
 315  0 forShiftAssignmentExpression(that);
 316    }
 317   
 318  0 public void forRightUnsignedShiftAssignmentExpression(RightUnsignedShiftAssignmentExpression that) {
 319  0 forShiftAssignmentExpression(that);
 320    }
 321   
 322  0 public void forBitwiseAssignmentExpression(BitwiseAssignmentExpression that) {
 323  0 forAssignmentExpression(that);
 324    }
 325   
 326  0 public void forBitwiseAndAssignmentExpression(BitwiseAndAssignmentExpression that) {
 327  0 forBitwiseAssignmentExpression(that);
 328    }
 329   
 330  0 public void forBitwiseOrAssignmentExpression(BitwiseOrAssignmentExpression that) {
 331  0 forBitwiseAssignmentExpression(that);
 332    }
 333   
 334  0 public void forBitwiseXorAssignmentExpression(BitwiseXorAssignmentExpression that) {
 335  0 forBitwiseAssignmentExpression(that);
 336    }
 337   
 338  0 public void forBinaryExpression(BinaryExpression that) {
 339  0 forExpression(that);
 340    }
 341   
 342  0 public void forBooleanExpression(BooleanExpression that) {
 343  0 forBinaryExpression(that);
 344    }
 345   
 346  0 public void forOrExpression(OrExpression that) {
 347  0 forBooleanExpression(that);
 348    }
 349   
 350  0 public void forAndExpression(AndExpression that) {
 351  0 forBooleanExpression(that);
 352    }
 353   
 354  0 public void forBitwiseBinaryExpression(BitwiseBinaryExpression that) {
 355  0 forBinaryExpression(that);
 356    }
 357   
 358  0 public void forBitwiseOrExpression(BitwiseOrExpression that) {
 359  0 forBitwiseBinaryExpression(that);
 360    }
 361   
 362  0 public void forBitwiseXorExpression(BitwiseXorExpression that) {
 363  0 forBitwiseBinaryExpression(that);
 364    }
 365   
 366  0 public void forBitwiseAndExpression(BitwiseAndExpression that) {
 367  0 forBitwiseBinaryExpression(that);
 368    }
 369   
 370  0 public void forEqualityExpression(EqualityExpression that) {
 371  0 forBinaryExpression(that);
 372    }
 373   
 374  0 public void forEqualsExpression(EqualsExpression that) {
 375  0 forEqualityExpression(that);
 376    }
 377   
 378  0 public void forNotEqualExpression(NotEqualExpression that) {
 379  0 forEqualityExpression(that);
 380    }
 381   
 382  0 public void forComparisonExpression(ComparisonExpression that) {
 383  0 forBinaryExpression(that);
 384    }
 385   
 386  0 public void forLessThanExpression(LessThanExpression that) {
 387  0 forComparisonExpression(that);
 388    }
 389   
 390  0 public void forLessThanOrEqualExpression(LessThanOrEqualExpression that) {
 391  0 forComparisonExpression(that);
 392    }
 393   
 394  0 public void forGreaterThanExpression(GreaterThanExpression that) {
 395  0 forComparisonExpression(that);
 396    }
 397   
 398  0 public void forGreaterThanOrEqualExpression(GreaterThanOrEqualExpression that) {
 399  0 forComparisonExpression(that);
 400    }
 401   
 402  0 public void forShiftBinaryExpression(ShiftBinaryExpression that) {
 403  0 forBinaryExpression(that);
 404    }
 405   
 406  0 public void forLeftShiftExpression(LeftShiftExpression that) {
 407  0 forShiftBinaryExpression(that);
 408    }
 409   
 410  0 public void forRightSignedShiftExpression(RightSignedShiftExpression that) {
 411  0 forShiftBinaryExpression(that);
 412    }
 413   
 414  0 public void forRightUnsignedShiftExpression(RightUnsignedShiftExpression that) {
 415  0 forShiftBinaryExpression(that);
 416    }
 417   
 418  0 public void forPlusExpression(PlusExpression that) {
 419  0 forBinaryExpression(that);
 420    }
 421   
 422  0 public void forNumericBinaryExpression(NumericBinaryExpression that) {
 423  0 forBinaryExpression(that);
 424    }
 425   
 426  0 public void forMinusExpression(MinusExpression that) {
 427  0 forNumericBinaryExpression(that);
 428    }
 429   
 430  0 public void forMultiplyExpression(MultiplyExpression that) {
 431  0 forNumericBinaryExpression(that);
 432    }
 433   
 434  0 public void forDivideExpression(DivideExpression that) {
 435  0 forNumericBinaryExpression(that);
 436    }
 437   
 438  0 public void forModExpression(ModExpression that) {
 439  0 forNumericBinaryExpression(that);
 440    }
 441   
 442  0 public void forNoOpExpression(NoOpExpression that) {
 443  0 forBinaryExpression(that);
 444    }
 445   
 446  0 public void forUnaryExpression(UnaryExpression that) {
 447  0 forExpression(that);
 448    }
 449   
 450  0 public void forIncrementExpression(IncrementExpression that) {
 451  0 forUnaryExpression(that);
 452    }
 453   
 454  0 public void forPrefixIncrementExpression(PrefixIncrementExpression that) {
 455  0 forIncrementExpression(that);
 456    }
 457   
 458  0 public void forPositivePrefixIncrementExpression(PositivePrefixIncrementExpression that) {
 459  0 forPrefixIncrementExpression(that);
 460    }
 461   
 462  0 public void forNegativePrefixIncrementExpression(NegativePrefixIncrementExpression that) {
 463  0 forPrefixIncrementExpression(that);
 464    }
 465   
 466  0 public void forPostfixIncrementExpression(PostfixIncrementExpression that) {
 467  0 forIncrementExpression(that);
 468    }
 469   
 470  0 public void forPositivePostfixIncrementExpression(PositivePostfixIncrementExpression that) {
 471  0 forPostfixIncrementExpression(that);
 472    }
 473   
 474  0 public void forNegativePostfixIncrementExpression(NegativePostfixIncrementExpression that) {
 475  0 forPostfixIncrementExpression(that);
 476    }
 477   
 478  0 public void forNumericUnaryExpression(NumericUnaryExpression that) {
 479  0 forUnaryExpression(that);
 480    }
 481   
 482  0 public void forPositiveExpression(PositiveExpression that) {
 483  0 forNumericUnaryExpression(that);
 484    }
 485   
 486  0 public void forNegativeExpression(NegativeExpression that) {
 487  0 forNumericUnaryExpression(that);
 488    }
 489   
 490  0 public void forBitwiseNotExpression(BitwiseNotExpression that) {
 491  0 forUnaryExpression(that);
 492    }
 493   
 494  0 public void forNotExpression(NotExpression that) {
 495  0 forUnaryExpression(that);
 496    }
 497   
 498  0 public void forConditionalExpression(ConditionalExpression that) {
 499  0 forExpression(that);
 500    }
 501   
 502  0 public void forInstanceofExpression(InstanceofExpression that) {
 503  0 forExpression(that);
 504    }
 505   
 506  0 public void forCastExpression(CastExpression that) {
 507  0 forExpression(that);
 508    }
 509   
 510  0 public void forPrimary(Primary that) {
 511  0 forExpression(that);
 512    }
 513   
 514  0 public void forLexicalLiteral(LexicalLiteral that) {
 515  0 forPrimary(that);
 516    }
 517   
 518  0 public void forIntegerLiteral(IntegerLiteral that) {
 519  0 forLexicalLiteral(that);
 520    }
 521   
 522  0 public void forLongLiteral(LongLiteral that) {
 523  0 forLexicalLiteral(that);
 524    }
 525   
 526  0 public void forDoubleLiteral(DoubleLiteral that) {
 527  0 forLexicalLiteral(that);
 528    }
 529   
 530  0 public void forFloatLiteral(FloatLiteral that) {
 531  0 forLexicalLiteral(that);
 532    }
 533   
 534  0 public void forBooleanLiteral(BooleanLiteral that) {
 535  0 forLexicalLiteral(that);
 536    }
 537   
 538  0 public void forCharLiteral(CharLiteral that) {
 539  0 forLexicalLiteral(that);
 540    }
 541   
 542  0 public void forStringLiteral(StringLiteral that) {
 543  0 forLexicalLiteral(that);
 544    }
 545   
 546  0 public void forNullLiteral(NullLiteral that) {
 547  0 forLexicalLiteral(that);
 548    }
 549   
 550  0 public void forInstantiation(Instantiation that) {
 551  0 forPrimary(that);
 552    }
 553   
 554  0 public void forClassInstantiation(ClassInstantiation that) {
 555  0 forInstantiation(that);
 556    }
 557   
 558  0 public void forNamedClassInstantiation(NamedClassInstantiation that) {
 559  0 forClassInstantiation(that);
 560    }
 561   
 562  0 public void forSimpleNamedClassInstantiation(SimpleNamedClassInstantiation that) {
 563  0 forNamedClassInstantiation(that);
 564    }
 565   
 566  0 public void forComplexNamedClassInstantiation(ComplexNamedClassInstantiation that) {
 567  0 forNamedClassInstantiation(that);
 568    }
 569   
 570  0 public void forAnonymousClassInstantiation(AnonymousClassInstantiation that) {
 571  0 forClassInstantiation(that);
 572    }
 573   
 574  0 public void forSimpleAnonymousClassInstantiation(SimpleAnonymousClassInstantiation that) {
 575  0 forAnonymousClassInstantiation(that);
 576    }
 577   
 578  0 public void forComplexAnonymousClassInstantiation(ComplexAnonymousClassInstantiation that) {
 579  0 forAnonymousClassInstantiation(that);
 580    }
 581   
 582  0 public void forArrayInstantiation(ArrayInstantiation that) {
 583  0 forInstantiation(that);
 584    }
 585   
 586  0 public void forUninitializedArrayInstantiation(UninitializedArrayInstantiation that) {
 587  0 forArrayInstantiation(that);
 588    }
 589   
 590  0 public void forSimpleUninitializedArrayInstantiation(SimpleUninitializedArrayInstantiation that) {
 591  0 forUninitializedArrayInstantiation(that);
 592    }
 593   
 594  0 public void forComplexUninitializedArrayInstantiation(ComplexUninitializedArrayInstantiation that) {
 595  0 forUninitializedArrayInstantiation(that);
 596    }
 597   
 598  0 public void forInitializedArrayInstantiation(InitializedArrayInstantiation that) {
 599  0 forArrayInstantiation(that);
 600    }
 601   
 602  0 public void forSimpleInitializedArrayInstantiation(SimpleInitializedArrayInstantiation that) {
 603  0 forInitializedArrayInstantiation(that);
 604    }
 605   
 606  0 public void forComplexInitializedArrayInstantiation(ComplexInitializedArrayInstantiation that) {
 607  0 forInitializedArrayInstantiation(that);
 608    }
 609   
 610  0 public void forVariableReference(VariableReference that) {
 611  0 forPrimary(that);
 612    }
 613   
 614  0 public void forNameReference(NameReference that) {
 615  0 forVariableReference(that);
 616    }
 617   
 618  0 public void forSimpleNameReference(SimpleNameReference that) {
 619  0 forNameReference(that);
 620    }
 621   
 622  0 public void forComplexNameReference(ComplexNameReference that) {
 623  0 forNameReference(that);
 624    }
 625   
 626  0 public void forThisReference(ThisReference that) {
 627  0 forVariableReference(that);
 628    }
 629   
 630  0 public void forSimpleThisReference(SimpleThisReference that) {
 631  0 forThisReference(that);
 632    }
 633   
 634  0 public void forComplexThisReference(ComplexThisReference that) {
 635  0 forThisReference(that);
 636    }
 637   
 638  0 public void forSuperReference(SuperReference that) {
 639  0 forVariableReference(that);
 640    }
 641   
 642  0 public void forSimpleSuperReference(SimpleSuperReference that) {
 643  0 forSuperReference(that);
 644    }
 645   
 646  0 public void forComplexSuperReference(ComplexSuperReference that) {
 647  0 forSuperReference(that);
 648    }
 649   
 650  0 public void forFunctionInvocation(FunctionInvocation that) {
 651  0 forPrimary(that);
 652    }
 653   
 654  0 public void forMethodInvocation(MethodInvocation that) {
 655  0 forFunctionInvocation(that);
 656    }
 657   
 658  0 public void forSimpleMethodInvocation(SimpleMethodInvocation that) {
 659  0 forMethodInvocation(that);
 660    }
 661   
 662  0 public void forComplexMethodInvocation(ComplexMethodInvocation that) {
 663  0 forMethodInvocation(that);
 664    }
 665   
 666  0 public void forThisConstructorInvocation(ThisConstructorInvocation that) {
 667  0 forFunctionInvocation(that);
 668    }
 669   
 670  0 public void forSimpleThisConstructorInvocation(SimpleThisConstructorInvocation that) {
 671  0 forThisConstructorInvocation(that);
 672    }
 673   
 674  0 public void forComplexThisConstructorInvocation(ComplexThisConstructorInvocation that) {
 675  0 forThisConstructorInvocation(that);
 676    }
 677   
 678  0 public void forSuperConstructorInvocation(SuperConstructorInvocation that) {
 679  0 forFunctionInvocation(that);
 680    }
 681   
 682  0 public void forSimpleSuperConstructorInvocation(SimpleSuperConstructorInvocation that) {
 683  0 forSuperConstructorInvocation(that);
 684    }
 685   
 686  0 public void forComplexSuperConstructorInvocation(ComplexSuperConstructorInvocation that) {
 687  0 forSuperConstructorInvocation(that);
 688    }
 689   
 690  0 public void forClassLiteral(ClassLiteral that) {
 691  0 forPrimary(that);
 692    }
 693   
 694  0 public void forArrayAccess(ArrayAccess that) {
 695  0 forPrimary(that);
 696    }
 697   
 698  0 public void forParenthesized(Parenthesized that) {
 699  0 forPrimary(that);
 700    }
 701   
 702  0 public void forEmptyExpression(EmptyExpression that) {
 703  0 forPrimary(that);
 704    }
 705   
 706  0 public void forBody(Body that) {
 707  0 forJExpression(that);
 708    }
 709   
 710  0 public void forBracedBody(BracedBody that) {
 711  0 forBody(that);
 712    }
 713   
 714  0 public void forUnbracedBody(UnbracedBody that) {
 715  0 forBody(that);
 716    }
 717   
 718  0 public void forExpressionList(ExpressionList that) {
 719  0 forJExpression(that);
 720    }
 721   
 722  0 public void forParenthesizedExpressionList(ParenthesizedExpressionList that) {
 723  0 forExpressionList(that);
 724    }
 725   
 726  0 public void forUnparenthesizedExpressionList(UnparenthesizedExpressionList that) {
 727  0 forExpressionList(that);
 728    }
 729   
 730  0 public void forDimensionExpressionList(DimensionExpressionList that) {
 731  0 forExpressionList(that);
 732    }
 733   
 734  0 public void forEmptyForCondition(EmptyForCondition that) {
 735  0 forJExpression(that);
 736    }
 737   
 738    /** This method is called by default from cases that do not
 739    ** override forCASEOnly.
 740    **/
 741  0 protected void defaultCase(JExpressionIF that) {}
 742    }