|
1 |
| package edu.rice.cs.dynamicjava.symbol.type; |
|
2 |
| |
|
3 |
| import edu.rice.cs.dynamicjava.symbol.*; |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| @SuppressWarnings("unused") |
|
8 |
| public abstract class TypeVisitorRunnable1 implements edu.rice.cs.plt.lambda.Runnable1<Type>, TypeVisitor_void { |
|
9 |
| |
|
10 |
0
| public void run(Type that) {
|
|
11 |
0
| that.apply(this);
|
|
12 |
| } |
|
13 |
| |
|
14 |
| |
|
15 |
| |
|
16 |
| public abstract void forBooleanType(BooleanType that); |
|
17 |
| |
|
18 |
| |
|
19 |
| public abstract void forCharType(CharType that); |
|
20 |
| |
|
21 |
| |
|
22 |
| public abstract void forByteType(ByteType that); |
|
23 |
| |
|
24 |
| |
|
25 |
| public abstract void forShortType(ShortType that); |
|
26 |
| |
|
27 |
| |
|
28 |
| public abstract void forIntType(IntType that); |
|
29 |
| |
|
30 |
| |
|
31 |
| public abstract void forLongType(LongType that); |
|
32 |
| |
|
33 |
| |
|
34 |
| public abstract void forFloatType(FloatType that); |
|
35 |
| |
|
36 |
| |
|
37 |
| public abstract void forDoubleType(DoubleType that); |
|
38 |
| |
|
39 |
| |
|
40 |
| public abstract void forNullType(NullType that); |
|
41 |
| |
|
42 |
| |
|
43 |
| public abstract void forSimpleArrayType(SimpleArrayType that); |
|
44 |
| |
|
45 |
| |
|
46 |
| public abstract void forVarargArrayType(VarargArrayType that); |
|
47 |
| |
|
48 |
| |
|
49 |
| public abstract void forSimpleClassType(SimpleClassType that); |
|
50 |
| |
|
51 |
| |
|
52 |
| public abstract void forRawClassType(RawClassType that); |
|
53 |
| |
|
54 |
| |
|
55 |
| public abstract void forParameterizedClassType(ParameterizedClassType that); |
|
56 |
| |
|
57 |
| |
|
58 |
| public abstract void forIntersectionType(IntersectionType that); |
|
59 |
| |
|
60 |
| |
|
61 |
| public abstract void forUnionType(UnionType that); |
|
62 |
| |
|
63 |
| |
|
64 |
| public abstract void forVariableType(VariableType that); |
|
65 |
| |
|
66 |
| |
|
67 |
| public abstract void forTopType(TopType that); |
|
68 |
| |
|
69 |
| |
|
70 |
| public abstract void forBottomType(BottomType that); |
|
71 |
| |
|
72 |
| |
|
73 |
| public abstract void forVoidType(VoidType that); |
|
74 |
| |
|
75 |
| |
|
76 |
| public abstract void forWildcard(Wildcard that); |
|
77 |
| } |