32
32
import static java .lang .classfile .ClassFile .*;
33
33
34
34
public record AnnotationImpl (Utf8Entry className , List <AnnotationElement > elements )
35
- implements Annotation , Util . Writable {
35
+ implements Annotation {
36
36
public AnnotationImpl {
37
37
elements = List .copyOf (elements );
38
38
}
39
39
40
- @ Override
41
- public void writeTo (BufWriterImpl buf ) {
42
- buf .writeIndex (className ());
43
- buf .writeU2 (elements ().size ());
44
- for (var e : elements ) {
45
- buf .writeIndex (e .name ());
46
- AnnotationReader .writeAnnotationValue (buf , e .value ());
47
- }
48
- }
49
-
50
40
@ Override
51
41
public String toString () {
52
42
StringBuilder sb = new StringBuilder ("Annotation[" );
53
43
sb .append (className ().stringValue ());
54
44
List <AnnotationElement > evps = elements ();
55
- if (!evps .isEmpty ())
56
- sb .append (" [" );
57
- for (AnnotationElement evp : evps ) {
58
- sb .append (evp .name ().stringValue ())
59
- .append ("=" )
60
- .append (evp .value ().toString ())
61
- .append (", " );
62
- }
63
45
if (!evps .isEmpty ()) {
64
- sb .delete (sb .length ()-1 , sb .length ());
65
- sb .append ("]" );
46
+ sb .append (' ' ).append (evps );
66
47
}
67
48
sb .append ("]" );
68
49
return sb .toString ();
69
50
}
70
51
71
52
public record AnnotationElementImpl (Utf8Entry name ,
72
53
AnnotationValue value )
73
- implements AnnotationElement , Util .Writable {
74
-
54
+ implements AnnotationElement {
75
55
@ Override
76
- public void writeTo (BufWriterImpl buf ) {
77
- buf .writeIndex (name ());
78
- AnnotationReader .writeAnnotationValue (buf , value ());
56
+ public String toString () {
57
+ return name + "=" + value ;
79
58
}
80
59
}
81
60
82
- public sealed interface OfConstantImpl extends AnnotationValue .OfConstant , Util .Writable {
83
-
84
- @ Override
85
- default void writeTo (BufWriterImpl buf ) {
86
- buf .writeU1 (tag ());
87
- buf .writeIndex (constant ());
88
- }
89
-
90
- }
91
-
92
61
public record OfStringImpl (Utf8Entry constant )
93
- implements OfConstantImpl , AnnotationValue .OfString {
94
-
62
+ implements AnnotationValue .OfString {
95
63
@ Override
96
64
public char tag () {
97
65
return AEV_STRING ;
@@ -104,8 +72,7 @@ public String stringValue() {
104
72
}
105
73
106
74
public record OfDoubleImpl (DoubleEntry constant )
107
- implements OfConstantImpl , AnnotationValue .OfDouble {
108
-
75
+ implements AnnotationValue .OfDouble {
109
76
@ Override
110
77
public char tag () {
111
78
return AEV_DOUBLE ;
@@ -118,8 +85,7 @@ public double doubleValue() {
118
85
}
119
86
120
87
public record OfFloatImpl (FloatEntry constant )
121
- implements OfConstantImpl , AnnotationValue .OfFloat {
122
-
88
+ implements AnnotationValue .OfFloat {
123
89
@ Override
124
90
public char tag () {
125
91
return AEV_FLOAT ;
@@ -132,8 +98,7 @@ public float floatValue() {
132
98
}
133
99
134
100
public record OfLongImpl (LongEntry constant )
135
- implements OfConstantImpl , AnnotationValue .OfLong {
136
-
101
+ implements AnnotationValue .OfLong {
137
102
@ Override
138
103
public char tag () {
139
104
return AEV_LONG ;
@@ -146,8 +111,7 @@ public long longValue() {
146
111
}
147
112
148
113
public record OfIntImpl (IntegerEntry constant )
149
- implements OfConstantImpl , AnnotationValue .OfInt {
150
-
114
+ implements AnnotationValue .OfInt {
151
115
@ Override
152
116
public char tag () {
153
117
return AEV_INT ;
@@ -160,8 +124,7 @@ public int intValue() {
160
124
}
161
125
162
126
public record OfShortImpl (IntegerEntry constant )
163
- implements OfConstantImpl , AnnotationValue .OfShort {
164
-
127
+ implements AnnotationValue .OfShort {
165
128
@ Override
166
129
public char tag () {
167
130
return AEV_SHORT ;
@@ -174,8 +137,7 @@ public short shortValue() {
174
137
}
175
138
176
139
public record OfCharImpl (IntegerEntry constant )
177
- implements OfConstantImpl , AnnotationValue .OfChar {
178
-
140
+ implements AnnotationValue .OfChar {
179
141
@ Override
180
142
public char tag () {
181
143
return AEV_CHAR ;
@@ -188,8 +150,7 @@ public char charValue() {
188
150
}
189
151
190
152
public record OfByteImpl (IntegerEntry constant )
191
- implements OfConstantImpl , AnnotationValue .OfByte {
192
-
153
+ implements AnnotationValue .OfByte {
193
154
@ Override
194
155
public char tag () {
195
156
return AEV_BYTE ;
@@ -202,8 +163,7 @@ public byte byteValue() {
202
163
}
203
164
204
165
public record OfBooleanImpl (IntegerEntry constant )
205
- implements OfConstantImpl , AnnotationValue .OfBoolean {
206
-
166
+ implements AnnotationValue .OfBoolean {
207
167
@ Override
208
168
public char tag () {
209
169
return AEV_BOOLEAN ;
@@ -216,8 +176,7 @@ public boolean booleanValue() {
216
176
}
217
177
218
178
public record OfArrayImpl (List <AnnotationValue > values )
219
- implements AnnotationValue .OfArray , Util .Writable {
220
-
179
+ implements AnnotationValue .OfArray {
221
180
public OfArrayImpl {
222
181
values = List .copyOf (values );
223
182
}
@@ -226,61 +185,29 @@ public record OfArrayImpl(List<AnnotationValue> values)
226
185
public char tag () {
227
186
return AEV_ARRAY ;
228
187
}
229
-
230
- @ Override
231
- public void writeTo (BufWriterImpl buf ) {
232
- buf .writeU1 (tag ());
233
- buf .writeU2 (values .size ());
234
- for (var e : values ) {
235
- AnnotationReader .writeAnnotationValue (buf , e );
236
- }
237
- }
238
-
239
188
}
240
189
241
190
public record OfEnumImpl (Utf8Entry className , Utf8Entry constantName )
242
- implements AnnotationValue .OfEnum , Util . Writable {
191
+ implements AnnotationValue .OfEnum {
243
192
@ Override
244
193
public char tag () {
245
194
return AEV_ENUM ;
246
195
}
247
-
248
- @ Override
249
- public void writeTo (BufWriterImpl buf ) {
250
- buf .writeU1 (tag ());
251
- buf .writeIndex (className );
252
- buf .writeIndex (constantName );
253
- }
254
-
255
196
}
256
197
257
198
public record OfAnnotationImpl (Annotation annotation )
258
- implements AnnotationValue .OfAnnotation , Util . Writable {
199
+ implements AnnotationValue .OfAnnotation {
259
200
@ Override
260
201
public char tag () {
261
202
return AEV_ANNOTATION ;
262
203
}
263
-
264
- @ Override
265
- public void writeTo (BufWriterImpl buf ) {
266
- buf .writeU1 (tag ());
267
- AnnotationReader .writeAnnotation (buf , annotation );
268
- }
269
-
270
204
}
271
205
272
206
public record OfClassImpl (Utf8Entry className )
273
- implements AnnotationValue .OfClass , Util . Writable {
207
+ implements AnnotationValue .OfClass {
274
208
@ Override
275
209
public char tag () {
276
210
return AEV_CLASS ;
277
211
}
278
-
279
- @ Override
280
- public void writeTo (BufWriterImpl buf ) {
281
- buf .writeU1 (tag ());
282
- buf .writeIndex (className );
283
- }
284
-
285
212
}
286
213
}
0 commit comments