1b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato/*
2b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * ProGuard -- shrinking, optimization, obfuscation, and preverification
3b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato *             of Java bytecode.
4b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato *
52270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom * Copyright (c) 2002-2014 Eric Lafortune (eric@graphics.cornell.edu)
6b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato *
7b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * This program is free software; you can redistribute it and/or modify it
8b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * under the terms of the GNU General Public License as published by the Free
9b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * Software Foundation; either version 2 of the License, or (at your option)
10b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * any later version.
11b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato *
12b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * This program is distributed in the hope that it will be useful, but WITHOUT
13b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * more details.
16b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato *
17b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * You should have received a copy of the GNU General Public License along
18b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * with this program; if not, write to the Free Software Foundation, Inc.,
19b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato */
21b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onoratopackage proguard.classfile.attribute.visitor;
22b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
23b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onoratoimport proguard.classfile.*;
24b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onoratoimport proguard.classfile.attribute.*;
25b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onoratoimport proguard.classfile.attribute.annotation.*;
26b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onoratoimport proguard.classfile.attribute.preverification.*;
27b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
28b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato/**
29b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * This AttributeVisitor delegates all visits to each AttributeVisitor
30b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * in a given list.
31b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato *
32b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato * @author Eric Lafortune
33b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato */
34b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onoratopublic class MultiAttributeVisitor implements AttributeVisitor
35b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato{
36b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    private AttributeVisitor[] attributeVisitors;
37b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
38b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
39b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public MultiAttributeVisitor()
40b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
41b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
42b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
43b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
44b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public MultiAttributeVisitor(AttributeVisitor[] attributeVisitors)
45b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
46b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        this.attributeVisitors = attributeVisitors;
47b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
48b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
49b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
50b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void addAttributeVisitor(AttributeVisitor attributeVisitor)
51b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
52b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        incrementArraySize();
53b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
54b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        attributeVisitors[attributeVisitors.length - 1] = attributeVisitor;
55b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
56b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
57b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
58b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    private void incrementArraySize()
59b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
60b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        if (attributeVisitors == null)
61b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
62b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors = new AttributeVisitor[1];
63b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
64b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        else
65b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
66b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            AttributeVisitor[] newAttributeVisitors =
67b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato                new AttributeVisitor[attributeVisitors.length + 1];
68b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            System.arraycopy(attributeVisitors, 0,
69b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato                             newAttributeVisitors, 0,
70b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato                             attributeVisitors.length);
71b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors = newAttributeVisitors;
72b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
73b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
74b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
75b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
76b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    // Implementations for AttributeVisitor.
77b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
78b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
79b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitUnknownAttribute(Clazz clazz, UnknownAttribute unknownAttribute)
80b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
81b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
82b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
83b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitUnknownAttribute(clazz, unknownAttribute);
84b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
85b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
86b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
87b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
88b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang    public void visitBootstrapMethodsAttribute(Clazz clazz, BootstrapMethodsAttribute bootstrapMethodsAttribute)
89b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang    {
90b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang        for (int index = 0; index < attributeVisitors.length; index++)
91b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang        {
92b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang            attributeVisitors[index].visitBootstrapMethodsAttribute(clazz, bootstrapMethodsAttribute);
93b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang        }
94b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang    }
95b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang
96b9cc48a43ed984587c939d02fba5316bf5c0df6eYing Wang
97b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSourceFileAttribute(Clazz clazz, SourceFileAttribute sourceFileAttribute)
98b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
99b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
100b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
101b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSourceFileAttribute(clazz, sourceFileAttribute);
102b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
103b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
104b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
105b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
106b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSourceDirAttribute(Clazz clazz, SourceDirAttribute sourceDirAttribute)
107b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
108b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
109b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
110b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSourceDirAttribute(clazz, sourceDirAttribute);
111b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
112b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
113b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
114b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
115b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitInnerClassesAttribute(Clazz clazz, InnerClassesAttribute innerClassesAttribute)
116b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
117b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
118b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
119b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitInnerClassesAttribute(clazz, innerClassesAttribute);
120b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
121b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
122b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
123b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
124b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitEnclosingMethodAttribute(Clazz clazz, EnclosingMethodAttribute enclosingMethodAttribute)
125b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
126b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
127b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
128b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitEnclosingMethodAttribute(clazz, enclosingMethodAttribute);
129b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
130b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
131b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
132b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
133b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitDeprecatedAttribute(Clazz clazz, DeprecatedAttribute deprecatedAttribute)
134b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
135b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
136b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
137b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitDeprecatedAttribute(clazz, deprecatedAttribute);
138b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
139b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
140b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
141b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
142b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSyntheticAttribute(Clazz clazz, SyntheticAttribute syntheticAttribute)
143b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
144b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
145b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
146b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSyntheticAttribute(clazz, syntheticAttribute);
147b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
148b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
149b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
150b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
151b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSignatureAttribute(Clazz clazz, SignatureAttribute syntheticAttribute)
152b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
153b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
154b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
155b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSignatureAttribute(clazz, syntheticAttribute);
156b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
157b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
158b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
159b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
160b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute)
161b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
162b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
163b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
164b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitDeprecatedAttribute(clazz, field, deprecatedAttribute);
165b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
166b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
167b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
168b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
169b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute)
170b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
171b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
172b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
173b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSyntheticAttribute(clazz, field, syntheticAttribute);
174b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
175b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
176b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
177b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
178b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute syntheticAttribute)
179b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
180b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
181b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
182b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSignatureAttribute(clazz, field, syntheticAttribute);
183b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
184b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
185b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
186b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
187b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitDeprecatedAttribute(Clazz clazz, Method method, DeprecatedAttribute deprecatedAttribute)
188b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
189b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
190b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
191b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitDeprecatedAttribute(clazz, method, deprecatedAttribute);
192b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
193b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
194b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
195b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
196b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSyntheticAttribute(Clazz clazz, Method method, SyntheticAttribute syntheticAttribute)
197b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
198b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
199b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
200b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSyntheticAttribute(clazz, method, syntheticAttribute);
201b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
202b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
203b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
204b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
205b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitSignatureAttribute(Clazz clazz, Method method, SignatureAttribute syntheticAttribute)
206b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
207b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
208b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
209b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitSignatureAttribute(clazz, method, syntheticAttribute);
210b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
211b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
212b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
213b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
214b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute)
215b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
216b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
217b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
218b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitConstantValueAttribute(clazz, field, constantValueAttribute);
219b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
220b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
221b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
222b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
2232270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitMethodParametersAttribute(Clazz clazz, Method method, MethodParametersAttribute methodParametersAttribute)
2242270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
2252270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
2262270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
2272270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitMethodParametersAttribute(clazz, method, methodParametersAttribute);
2282270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
2292270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
2302270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
2312270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
232b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitExceptionsAttribute(Clazz clazz, Method method, ExceptionsAttribute exceptionsAttribute)
233b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
234b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
235b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
236b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitExceptionsAttribute(clazz, method, exceptionsAttribute);
237b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
238b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
239b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
240b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
241b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute)
242b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
243b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
244b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
245b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitCodeAttribute(clazz, method, codeAttribute);
246b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
247b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
248b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
249b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
250b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitStackMapAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapAttribute stackMapAttribute)
251b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
252b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
253b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
254b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitStackMapAttribute(clazz, method, codeAttribute, stackMapAttribute);
255b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
256b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
257b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
258b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
259b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitStackMapTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, StackMapTableAttribute stackMapTableAttribute)
260b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
261b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
262b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
263b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitStackMapTableAttribute(clazz, method, codeAttribute, stackMapTableAttribute);
264b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
265b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
266b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
267b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
268b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitLineNumberTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LineNumberTableAttribute lineNumberTableAttribute)
269b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
270b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
271b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
272b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitLineNumberTableAttribute(clazz, method, codeAttribute, lineNumberTableAttribute);
273b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
274b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
275b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
276b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
277b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitLocalVariableTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTableAttribute localVariableTableAttribute)
278b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
279b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
280b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
281b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitLocalVariableTableAttribute(clazz, method, codeAttribute, localVariableTableAttribute);
282b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
283b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
284b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
285b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
286b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitLocalVariableTypeTableAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, LocalVariableTypeTableAttribute localVariableTypeTableAttribute)
287b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
288b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
289b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
290b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitLocalVariableTypeTableAttribute(clazz, method, codeAttribute, localVariableTypeTableAttribute);
291b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
292b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
293b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
294b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
295b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute)
296b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
297b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
298b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
299b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeVisibleAnnotationsAttribute(clazz, runtimeVisibleAnnotationsAttribute);
300b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
301b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
302b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
303b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
304b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute)
305b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
306b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
307b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
308b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeInvisibleAnnotationsAttribute(clazz, runtimeInvisibleAnnotationsAttribute);
309b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
310b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
311b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
312b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
313b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Field field, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute)
314b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
315b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
316b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
317b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeVisibleAnnotationsAttribute(clazz, field, runtimeVisibleAnnotationsAttribute);
318b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
319b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
320b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
321b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
322b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Field field, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute)
323b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
324b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
325b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
326b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeInvisibleAnnotationsAttribute(clazz, field, runtimeInvisibleAnnotationsAttribute);
327b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
328b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
329b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
330b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
331b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeVisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleAnnotationsAttribute runtimeVisibleAnnotationsAttribute)
332b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
333b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
334b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
335b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeVisibleAnnotationsAttribute(clazz, method, runtimeVisibleAnnotationsAttribute);
336b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
337b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
338b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
339b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
340b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeInvisibleAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleAnnotationsAttribute runtimeInvisibleAnnotationsAttribute)
341b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
342b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
343b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
344b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeInvisibleAnnotationsAttribute(clazz, method, runtimeInvisibleAnnotationsAttribute);
345b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
346b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
347b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
348b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
349b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeVisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleParameterAnnotationsAttribute runtimeVisibleParameterAnnotationsAttribute)
350b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
351b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
352b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
353b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeVisibleParameterAnnotationsAttribute(clazz, method, runtimeVisibleParameterAnnotationsAttribute);
354b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
355b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
356b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
357b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
358b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitRuntimeInvisibleParameterAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleParameterAnnotationsAttribute runtimeInvisibleParameterAnnotationsAttribute)
359b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
360b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
361b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
362b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitRuntimeInvisibleParameterAnnotationsAttribute(clazz, method, runtimeInvisibleParameterAnnotationsAttribute);
363b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
364b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
365b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
366b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato
3672270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeVisibleTypeAnnotationsAttribute(Clazz clazz, RuntimeVisibleTypeAnnotationsAttribute runtimeVisibleTypeAnnotationsAttribute)
3682270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
3692270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
3702270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
3712270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeVisibleTypeAnnotationsAttribute(clazz, runtimeVisibleTypeAnnotationsAttribute);
3722270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
3732270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
3742270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
3752270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
3762270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeVisibleTypeAnnotationsAttribute(Clazz clazz, Field field, RuntimeVisibleTypeAnnotationsAttribute runtimeVisibleTypeAnnotationsAttribute)
3772270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
3782270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
3792270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
3802270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeVisibleTypeAnnotationsAttribute(clazz, field, runtimeVisibleTypeAnnotationsAttribute);
3812270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
3822270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
3832270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
3842270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
3852270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeVisibleTypeAnnotationsAttribute(Clazz clazz, Method method, RuntimeVisibleTypeAnnotationsAttribute runtimeVisibleTypeAnnotationsAttribute)
3862270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
3872270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
3882270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
3892270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeVisibleTypeAnnotationsAttribute(clazz, method, runtimeVisibleTypeAnnotationsAttribute);
3902270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
3912270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
3922270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
3932270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
3942270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeVisibleTypeAnnotationsAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, RuntimeVisibleTypeAnnotationsAttribute runtimeVisibleTypeAnnotationsAttribute)
3952270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
3962270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
3972270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
3982270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeVisibleTypeAnnotationsAttribute(clazz, method, codeAttribute, runtimeVisibleTypeAnnotationsAttribute);
3992270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
4002270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
4012270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4022270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4032270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeInvisibleTypeAnnotationsAttribute(Clazz clazz, RuntimeInvisibleTypeAnnotationsAttribute runtimeInvisibleTypeAnnotationsAttribute)
4042270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
4052270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
4062270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
4072270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, runtimeInvisibleTypeAnnotationsAttribute);
4082270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
4092270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
4102270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4112270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4122270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeInvisibleTypeAnnotationsAttribute(Clazz clazz, Field field, RuntimeInvisibleTypeAnnotationsAttribute runtimeInvisibleTypeAnnotationsAttribute)
4132270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
4142270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
4152270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
4162270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, field, runtimeInvisibleTypeAnnotationsAttribute);
4172270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
4182270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
4192270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4202270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4212270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeInvisibleTypeAnnotationsAttribute(Clazz clazz, Method method, RuntimeInvisibleTypeAnnotationsAttribute runtimeInvisibleTypeAnnotationsAttribute)
4222270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
4232270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
4242270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
4252270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, method, runtimeInvisibleTypeAnnotationsAttribute);
4262270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
4272270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
4282270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4292270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4302270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    public void visitRuntimeInvisibleTypeAnnotationsAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute, RuntimeInvisibleTypeAnnotationsAttribute runtimeInvisibleTypeAnnotationsAttribute)
4312270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    {
4322270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        for (int index = 0; index < attributeVisitors.length; index++)
4332270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        {
4342270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom            attributeVisitors[index].visitRuntimeInvisibleTypeAnnotationsAttribute(clazz, method, codeAttribute, runtimeInvisibleTypeAnnotationsAttribute);
4352270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom        }
4362270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom    }
4372270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
4382270795fbe0b277bfd49f40950ecaa78583175ccBrian Carlstrom
439b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    public void visitAnnotationDefaultAttribute(Clazz clazz, Method method, AnnotationDefaultAttribute annotationDefaultAttribute)
440b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    {
441b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        for (int index = 0; index < attributeVisitors.length; index++)
442b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        {
443b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato            attributeVisitors[index].visitAnnotationDefaultAttribute(clazz, method, annotationDefaultAttribute);
444b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato        }
445b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato    }
446b72c5c2e5482cf10117b2b25f642f7616b2326c3Joe Onorato}
447