KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > cojen > classfile > attribute > RuntimeVisibleParameterAnnotationsAttr


1 /*
2  * Copyright 2005 Brian S O'Neill
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.cojen.classfile.attribute;
18
19 import java.io.DataInput JavaDoc;
20 import java.io.IOException JavaDoc;
21 import org.cojen.classfile.ConstantPool;
22
23 /**
24  * The class corresponds to the RuntimeVisibleParameterAnnotations_attribute
25  * structure defined for Java 5.
26  *
27  * @author Brian S O'Neill
28  */

29 public class RuntimeVisibleParameterAnnotationsAttr extends ParameterAnnotationsAttr {
30
31     public RuntimeVisibleParameterAnnotationsAttr(ConstantPool cp) {
32         super(cp, RUNTIME_VISIBLE_PARAMETER_ANNOTATIONS);
33     }
34
35     public RuntimeVisibleParameterAnnotationsAttr(ConstantPool cp, String JavaDoc name) {
36         super(cp, name);
37     }
38     
39     public RuntimeVisibleParameterAnnotationsAttr
40         (ConstantPool cp, String JavaDoc name, int length, DataInput JavaDoc din)
41         throws IOException JavaDoc
42     {
43         super(cp, name, length, din);
44     }
45 }
46
Popular Tags