001    package edu.rice.cs.javalanglevels.tree;
002    
003    /** An interface for visitors over JExpressionIF that do not return a value. */
004    public interface JExpressionIFVisitor_void {
005    
006      /** Process an instance of SourceFile. */
007      public void forSourceFile(SourceFile that);
008    
009      /** Process an instance of ModifiersAndVisibility. */
010      public void forModifiersAndVisibility(ModifiersAndVisibility that);
011    
012      /** Process an instance of CompoundWord. */
013      public void forCompoundWord(CompoundWord that);
014    
015      /** Process an instance of Word. */
016      public void forWord(Word that);
017    
018      /** Process an instance of ClassDef. */
019      public void forClassDef(ClassDef that);
020    
021      /** Process an instance of InnerClassDef. */
022      public void forInnerClassDef(InnerClassDef that);
023    
024      /** Process an instance of InterfaceDef. */
025      public void forInterfaceDef(InterfaceDef that);
026    
027      /** Process an instance of InnerInterfaceDef. */
028      public void forInnerInterfaceDef(InnerInterfaceDef that);
029    
030      /** Process an instance of ConstructorDef. */
031      public void forConstructorDef(ConstructorDef that);
032    
033      /** Process an instance of InstanceInitializer. */
034      public void forInstanceInitializer(InstanceInitializer that);
035    
036      /** Process an instance of StaticInitializer. */
037      public void forStaticInitializer(StaticInitializer that);
038    
039      /** Process an instance of PackageStatement. */
040      public void forPackageStatement(PackageStatement that);
041    
042      /** Process an instance of ClassImportStatement. */
043      public void forClassImportStatement(ClassImportStatement that);
044    
045      /** Process an instance of PackageImportStatement. */
046      public void forPackageImportStatement(PackageImportStatement that);
047    
048      /** Process an instance of LabeledStatement. */
049      public void forLabeledStatement(LabeledStatement that);
050    
051      /** Process an instance of Block. */
052      public void forBlock(Block that);
053    
054      /** Process an instance of ExpressionStatement. */
055      public void forExpressionStatement(ExpressionStatement that);
056    
057      /** Process an instance of SwitchStatement. */
058      public void forSwitchStatement(SwitchStatement that);
059    
060      /** Process an instance of IfThenStatement. */
061      public void forIfThenStatement(IfThenStatement that);
062    
063      /** Process an instance of IfThenElseStatement. */
064      public void forIfThenElseStatement(IfThenElseStatement that);
065    
066      /** Process an instance of WhileStatement. */
067      public void forWhileStatement(WhileStatement that);
068    
069      /** Process an instance of DoStatement. */
070      public void forDoStatement(DoStatement that);
071    
072      /** Process an instance of ForStatement. */
073      public void forForStatement(ForStatement that);
074    
075      /** Process an instance of LabeledBreakStatement. */
076      public void forLabeledBreakStatement(LabeledBreakStatement that);
077    
078      /** Process an instance of UnlabeledBreakStatement. */
079      public void forUnlabeledBreakStatement(UnlabeledBreakStatement that);
080    
081      /** Process an instance of LabeledContinueStatement. */
082      public void forLabeledContinueStatement(LabeledContinueStatement that);
083    
084      /** Process an instance of UnlabeledContinueStatement. */
085      public void forUnlabeledContinueStatement(UnlabeledContinueStatement that);
086    
087      /** Process an instance of VoidReturnStatement. */
088      public void forVoidReturnStatement(VoidReturnStatement that);
089    
090      /** Process an instance of ValueReturnStatement. */
091      public void forValueReturnStatement(ValueReturnStatement that);
092    
093      /** Process an instance of ThrowStatement. */
094      public void forThrowStatement(ThrowStatement that);
095    
096      /** Process an instance of SynchronizedStatement. */
097      public void forSynchronizedStatement(SynchronizedStatement that);
098    
099      /** Process an instance of TryCatchFinallyStatement. */
100      public void forTryCatchFinallyStatement(TryCatchFinallyStatement that);
101    
102      /** Process an instance of NormalTryCatchStatement. */
103      public void forNormalTryCatchStatement(NormalTryCatchStatement that);
104    
105      /** Process an instance of EmptyStatement. */
106      public void forEmptyStatement(EmptyStatement that);
107    
108      /** Process an instance of ConcreteMethodDef. */
109      public void forConcreteMethodDef(ConcreteMethodDef that);
110    
111      /** Process an instance of AbstractMethodDef. */
112      public void forAbstractMethodDef(AbstractMethodDef that);
113    
114      /** Process an instance of FormalParameter. */
115      public void forFormalParameter(FormalParameter that);
116    
117      /** Process an instance of VariableDeclaration. */
118      public void forVariableDeclaration(VariableDeclaration that);
119    
120      /** Process an instance of UninitializedVariableDeclarator. */
121      public void forUninitializedVariableDeclarator(UninitializedVariableDeclarator that);
122    
123      /** Process an instance of InitializedVariableDeclarator. */
124      public void forInitializedVariableDeclarator(InitializedVariableDeclarator that);
125    
126      /** Process an instance of TypeParameter. */
127      public void forTypeParameter(TypeParameter that);
128    
129      /** Process an instance of ArrayInitializer. */
130      public void forArrayInitializer(ArrayInitializer that);
131    
132      /** Process an instance of PrimitiveType. */
133      public void forPrimitiveType(PrimitiveType that);
134    
135      /** Process an instance of ArrayType. */
136      public void forArrayType(ArrayType that);
137    
138      /** Process an instance of MemberType. */
139      public void forMemberType(MemberType that);
140    
141      /** Process an instance of ClassOrInterfaceType. */
142      public void forClassOrInterfaceType(ClassOrInterfaceType that);
143    
144      /** Process an instance of TypeVariable. */
145      public void forTypeVariable(TypeVariable that);
146    
147      /** Process an instance of VoidReturn. */
148      public void forVoidReturn(VoidReturn that);
149    
150      /** Process an instance of LabeledCase. */
151      public void forLabeledCase(LabeledCase that);
152    
153      /** Process an instance of DefaultCase. */
154      public void forDefaultCase(DefaultCase that);
155    
156      /** Process an instance of CatchBlock. */
157      public void forCatchBlock(CatchBlock that);
158    
159      /** Process an instance of SimpleAssignmentExpression. */
160      public void forSimpleAssignmentExpression(SimpleAssignmentExpression that);
161    
162      /** Process an instance of PlusAssignmentExpression. */
163      public void forPlusAssignmentExpression(PlusAssignmentExpression that);
164    
165      /** Process an instance of MinusAssignmentExpression. */
166      public void forMinusAssignmentExpression(MinusAssignmentExpression that);
167    
168      /** Process an instance of MultiplyAssignmentExpression. */
169      public void forMultiplyAssignmentExpression(MultiplyAssignmentExpression that);
170    
171      /** Process an instance of DivideAssignmentExpression. */
172      public void forDivideAssignmentExpression(DivideAssignmentExpression that);
173    
174      /** Process an instance of ModAssignmentExpression. */
175      public void forModAssignmentExpression(ModAssignmentExpression that);
176    
177      /** Process an instance of LeftShiftAssignmentExpression. */
178      public void forLeftShiftAssignmentExpression(LeftShiftAssignmentExpression that);
179    
180      /** Process an instance of RightSignedShiftAssignmentExpression. */
181      public void forRightSignedShiftAssignmentExpression(RightSignedShiftAssignmentExpression that);
182    
183      /** Process an instance of RightUnsignedShiftAssignmentExpression. */
184      public void forRightUnsignedShiftAssignmentExpression(RightUnsignedShiftAssignmentExpression that);
185    
186      /** Process an instance of BitwiseAndAssignmentExpression. */
187      public void forBitwiseAndAssignmentExpression(BitwiseAndAssignmentExpression that);
188    
189      /** Process an instance of BitwiseOrAssignmentExpression. */
190      public void forBitwiseOrAssignmentExpression(BitwiseOrAssignmentExpression that);
191    
192      /** Process an instance of BitwiseXorAssignmentExpression. */
193      public void forBitwiseXorAssignmentExpression(BitwiseXorAssignmentExpression that);
194    
195      /** Process an instance of OrExpression. */
196      public void forOrExpression(OrExpression that);
197    
198      /** Process an instance of AndExpression. */
199      public void forAndExpression(AndExpression that);
200    
201      /** Process an instance of BitwiseOrExpression. */
202      public void forBitwiseOrExpression(BitwiseOrExpression that);
203    
204      /** Process an instance of BitwiseXorExpression. */
205      public void forBitwiseXorExpression(BitwiseXorExpression that);
206    
207      /** Process an instance of BitwiseAndExpression. */
208      public void forBitwiseAndExpression(BitwiseAndExpression that);
209    
210      /** Process an instance of EqualsExpression. */
211      public void forEqualsExpression(EqualsExpression that);
212    
213      /** Process an instance of NotEqualExpression. */
214      public void forNotEqualExpression(NotEqualExpression that);
215    
216      /** Process an instance of LessThanExpression. */
217      public void forLessThanExpression(LessThanExpression that);
218    
219      /** Process an instance of LessThanOrEqualExpression. */
220      public void forLessThanOrEqualExpression(LessThanOrEqualExpression that);
221    
222      /** Process an instance of GreaterThanExpression. */
223      public void forGreaterThanExpression(GreaterThanExpression that);
224    
225      /** Process an instance of GreaterThanOrEqualExpression. */
226      public void forGreaterThanOrEqualExpression(GreaterThanOrEqualExpression that);
227    
228      /** Process an instance of LeftShiftExpression. */
229      public void forLeftShiftExpression(LeftShiftExpression that);
230    
231      /** Process an instance of RightSignedShiftExpression. */
232      public void forRightSignedShiftExpression(RightSignedShiftExpression that);
233    
234      /** Process an instance of RightUnsignedShiftExpression. */
235      public void forRightUnsignedShiftExpression(RightUnsignedShiftExpression that);
236    
237      /** Process an instance of PlusExpression. */
238      public void forPlusExpression(PlusExpression that);
239    
240      /** Process an instance of MinusExpression. */
241      public void forMinusExpression(MinusExpression that);
242    
243      /** Process an instance of MultiplyExpression. */
244      public void forMultiplyExpression(MultiplyExpression that);
245    
246      /** Process an instance of DivideExpression. */
247      public void forDivideExpression(DivideExpression that);
248    
249      /** Process an instance of ModExpression. */
250      public void forModExpression(ModExpression that);
251    
252      /** Process an instance of NoOpExpression. */
253      public void forNoOpExpression(NoOpExpression that);
254    
255      /** Process an instance of PositivePrefixIncrementExpression. */
256      public void forPositivePrefixIncrementExpression(PositivePrefixIncrementExpression that);
257    
258      /** Process an instance of NegativePrefixIncrementExpression. */
259      public void forNegativePrefixIncrementExpression(NegativePrefixIncrementExpression that);
260    
261      /** Process an instance of PositivePostfixIncrementExpression. */
262      public void forPositivePostfixIncrementExpression(PositivePostfixIncrementExpression that);
263    
264      /** Process an instance of NegativePostfixIncrementExpression. */
265      public void forNegativePostfixIncrementExpression(NegativePostfixIncrementExpression that);
266    
267      /** Process an instance of PositiveExpression. */
268      public void forPositiveExpression(PositiveExpression that);
269    
270      /** Process an instance of NegativeExpression. */
271      public void forNegativeExpression(NegativeExpression that);
272    
273      /** Process an instance of BitwiseNotExpression. */
274      public void forBitwiseNotExpression(BitwiseNotExpression that);
275    
276      /** Process an instance of NotExpression. */
277      public void forNotExpression(NotExpression that);
278    
279      /** Process an instance of ConditionalExpression. */
280      public void forConditionalExpression(ConditionalExpression that);
281    
282      /** Process an instance of InstanceofExpression. */
283      public void forInstanceofExpression(InstanceofExpression that);
284    
285      /** Process an instance of CastExpression. */
286      public void forCastExpression(CastExpression that);
287    
288      /** Process an instance of IntegerLiteral. */
289      public void forIntegerLiteral(IntegerLiteral that);
290    
291      /** Process an instance of LongLiteral. */
292      public void forLongLiteral(LongLiteral that);
293    
294      /** Process an instance of DoubleLiteral. */
295      public void forDoubleLiteral(DoubleLiteral that);
296    
297      /** Process an instance of FloatLiteral. */
298      public void forFloatLiteral(FloatLiteral that);
299    
300      /** Process an instance of BooleanLiteral. */
301      public void forBooleanLiteral(BooleanLiteral that);
302    
303      /** Process an instance of CharLiteral. */
304      public void forCharLiteral(CharLiteral that);
305    
306      /** Process an instance of StringLiteral. */
307      public void forStringLiteral(StringLiteral that);
308    
309      /** Process an instance of NullLiteral. */
310      public void forNullLiteral(NullLiteral that);
311    
312      /** Process an instance of SimpleNamedClassInstantiation. */
313      public void forSimpleNamedClassInstantiation(SimpleNamedClassInstantiation that);
314    
315      /** Process an instance of ComplexNamedClassInstantiation. */
316      public void forComplexNamedClassInstantiation(ComplexNamedClassInstantiation that);
317    
318      /** Process an instance of SimpleAnonymousClassInstantiation. */
319      public void forSimpleAnonymousClassInstantiation(SimpleAnonymousClassInstantiation that);
320    
321      /** Process an instance of ComplexAnonymousClassInstantiation. */
322      public void forComplexAnonymousClassInstantiation(ComplexAnonymousClassInstantiation that);
323    
324      /** Process an instance of SimpleUninitializedArrayInstantiation. */
325      public void forSimpleUninitializedArrayInstantiation(SimpleUninitializedArrayInstantiation that);
326    
327      /** Process an instance of ComplexUninitializedArrayInstantiation. */
328      public void forComplexUninitializedArrayInstantiation(ComplexUninitializedArrayInstantiation that);
329    
330      /** Process an instance of SimpleInitializedArrayInstantiation. */
331      public void forSimpleInitializedArrayInstantiation(SimpleInitializedArrayInstantiation that);
332    
333      /** Process an instance of ComplexInitializedArrayInstantiation. */
334      public void forComplexInitializedArrayInstantiation(ComplexInitializedArrayInstantiation that);
335    
336      /** Process an instance of SimpleNameReference. */
337      public void forSimpleNameReference(SimpleNameReference that);
338    
339      /** Process an instance of ComplexNameReference. */
340      public void forComplexNameReference(ComplexNameReference that);
341    
342      /** Process an instance of SimpleThisReference. */
343      public void forSimpleThisReference(SimpleThisReference that);
344    
345      /** Process an instance of ComplexThisReference. */
346      public void forComplexThisReference(ComplexThisReference that);
347    
348      /** Process an instance of SimpleSuperReference. */
349      public void forSimpleSuperReference(SimpleSuperReference that);
350    
351      /** Process an instance of ComplexSuperReference. */
352      public void forComplexSuperReference(ComplexSuperReference that);
353    
354      /** Process an instance of SimpleMethodInvocation. */
355      public void forSimpleMethodInvocation(SimpleMethodInvocation that);
356    
357      /** Process an instance of ComplexMethodInvocation. */
358      public void forComplexMethodInvocation(ComplexMethodInvocation that);
359    
360      /** Process an instance of SimpleThisConstructorInvocation. */
361      public void forSimpleThisConstructorInvocation(SimpleThisConstructorInvocation that);
362    
363      /** Process an instance of ComplexThisConstructorInvocation. */
364      public void forComplexThisConstructorInvocation(ComplexThisConstructorInvocation that);
365    
366      /** Process an instance of SimpleSuperConstructorInvocation. */
367      public void forSimpleSuperConstructorInvocation(SimpleSuperConstructorInvocation that);
368    
369      /** Process an instance of ComplexSuperConstructorInvocation. */
370      public void forComplexSuperConstructorInvocation(ComplexSuperConstructorInvocation that);
371    
372      /** Process an instance of ClassLiteral. */
373      public void forClassLiteral(ClassLiteral that);
374    
375      /** Process an instance of ArrayAccess. */
376      public void forArrayAccess(ArrayAccess that);
377    
378      /** Process an instance of Parenthesized. */
379      public void forParenthesized(Parenthesized that);
380    
381      /** Process an instance of EmptyExpression. */
382      public void forEmptyExpression(EmptyExpression that);
383    
384      /** Process an instance of BracedBody. */
385      public void forBracedBody(BracedBody that);
386    
387      /** Process an instance of UnbracedBody. */
388      public void forUnbracedBody(UnbracedBody that);
389    
390      /** Process an instance of ParenthesizedExpressionList. */
391      public void forParenthesizedExpressionList(ParenthesizedExpressionList that);
392    
393      /** Process an instance of UnparenthesizedExpressionList. */
394      public void forUnparenthesizedExpressionList(UnparenthesizedExpressionList that);
395    
396      /** Process an instance of DimensionExpressionList. */
397      public void forDimensionExpressionList(DimensionExpressionList that);
398    
399      /** Process an instance of EmptyForCondition. */
400      public void forEmptyForCondition(EmptyForCondition that);
401    }