KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > yworks > yguard > obf > classfile > RuntimeInvisibleParameterAnnotationsAttrInfo


1 /*
2  * RuntimeInvisibleParameterAnnotationsAttrInfo.java
3  *
4  * Created on April 20, 2005, 4:31 PM
5  */

6
7 package com.yworks.yguard.obf.classfile;
8
9 /**
10  *
11  * @author muellese
12  */

13 public class RuntimeInvisibleParameterAnnotationsAttrInfo extends RuntimeVisibleParameterAnnotationsAttrInfo
14 {
15   
16   /** Creates a new instance of RuntimeInvisibleParameterAnnotationsAttrInfo */
17   public RuntimeInvisibleParameterAnnotationsAttrInfo(ClassFile cf, int attrNameIndex, int attrLength)
18   {
19     super(cf, attrNameIndex, attrLength);
20   }
21
22   protected String JavaDoc getAttrName()
23   {
24     return ClassConstants.ATTR_RuntimeInvisibleParameterAnnotations;
25   }
26 }
27
Popular Tags