01: /*
02: * RuntimeVisibleAnnotationsAttrInfo.java
03: *
04: * Created on April 20, 2005, 11:51 AM
05: */
06:
07: package com.yworks.yguard.obf.classfile;
08:
09: import java.io.DataInput;
10: import java.io.DataOutput;
11: import java.io.IOException;
12:
13: /**
14: *
15: * @author muellese
16: */
17: public class RuntimeInvisibleAnnotationsAttrInfo extends
18: RuntimeVisibleAnnotationsAttrInfo {
19: /** Creates a new instance of RuntimeVisibleAnnotationsAttrInfo */
20: public RuntimeInvisibleAnnotationsAttrInfo(ClassFile cf,
21: int attrNameIndex, int attrLength) {
22: super (cf, attrNameIndex, attrLength);
23: }
24:
25: protected String getAttrName() {
26: return ClassConstants.ATTR_RuntimeInvisibleAnnotations;
27: }
28: }
|