KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > gjt > jclasslib > structures > attributes > RuntimeInvisibleAnnotationsAttribute


1 /*
2     This library is free software; you can redistribute it and/or
3     modify it under the terms of the GNU General Public
4     License as published by the Free Software Foundation; either
5     version 2 of the license, or (at your option) any later version.
6 */

7 package org.gjt.jclasslib.structures.attributes;
8
9 /**
10  * Describes an <tt>RuntimeInvisibleAnnotations</tt> attribute structure.
11  *
12  * @author <a HREF="mailto:vitor.carreira@gmail.com">Vitor Carreira</a>
13  * @version $Revision: 1.1 $ $Date: 2004/12/28 13:04:32 $
14  */

15 public class RuntimeInvisibleAnnotationsAttribute extends RuntimeAnnotationsAttribute {
16     /**
17      * Name of the attribute as in the corresponding constant pool entry.
18      */

19     public static final String JavaDoc ATTRIBUTE_NAME = "RuntimeInvisibleAnnotations";
20
21
22     protected void debug(String JavaDoc message) {
23         super.debug(message + "RuntimeInvisibleAnnotations attribute with " + getLength(runtimeAnnotations) + " entries");
24     }
25 }
26
Popular Tags