01: /*
02: * RuntimeInvisibleParameterAnnotationsAttrInfo.java
03: *
04: * Created on April 20, 2005, 4:31 PM
05: */
06:
07: package com.yworks.yguard.obf.classfile;
08:
09: /**
10: *
11: * @author muellese
12: */
13: public class RuntimeInvisibleParameterAnnotationsAttrInfo extends
14: RuntimeVisibleParameterAnnotationsAttrInfo {
15:
16: /** Creates a new instance of RuntimeInvisibleParameterAnnotationsAttrInfo */
17: public RuntimeInvisibleParameterAnnotationsAttrInfo(ClassFile cf,
18: int attrNameIndex, int attrLength) {
19: super (cf, attrNameIndex, attrLength);
20: }
21:
22: protected String getAttrName() {
23: return ClassConstants.ATTR_RuntimeInvisibleParameterAnnotations;
24: }
25: }
|