KickJava   Java API By Example, From Geeks To Geeks.

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


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 /**
11  * Describes an <tt>RuntimeVisibleAnnotations</tt> attribute structure.
12  *
13  * @author <a HREF="mailto:vitor.carreira@gmail.com">Vitor Carreira</a>
14  * @version $Revision: 1.1 $ $Date: 2004/12/28 13:04:32 $
15  */

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

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