KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*
2  * RuntimeVisibleAnnotationsAttrInfo.java
3  *
4  * Created on April 20, 2005, 11:51 AM
5  */

6
7 package com.yworks.yguard.obf.classfile;
8
9 import java.io.DataInput JavaDoc;
10 import java.io.DataOutput JavaDoc;
11 import java.io.IOException JavaDoc;
12
13 /**
14  *
15  * @author muellese
16  */

17 public class RuntimeInvisibleAnnotationsAttrInfo extends RuntimeVisibleAnnotationsAttrInfo
18 {
19   /** Creates a new instance of RuntimeVisibleAnnotationsAttrInfo */
20   public RuntimeInvisibleAnnotationsAttrInfo(ClassFile cf, int attrNameIndex, int attrLength)
21   {
22     super(cf, attrNameIndex, attrLength);
23   }
24
25   protected String JavaDoc getAttrName()
26   {
27     return ClassConstants.ATTR_RuntimeInvisibleAnnotations;
28   }
29 }
30
Popular Tags