Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4973516

Compiler doesn't allow to create an attribute with Retention and RetentionPolicy

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P2 P2
    • None
    • 5.0
    • tools
    • sparc
    • solaris_2.1

      Compiler should allow to create attributes with various attributes with retention. The compiler will give exceptions when they are defined.

      The following is the code and compiler fail console.
      <code>
      import java.lang.annotation.*;

      @Retention(RUNTIME) @interface ATTR1{

      }

      @Retention(SOURCE) @interface ATTR2 {

      }

      @Retention(CLASS) @interface ATTR3 {

      }

      @interface ATTR4 {

      }

      public class Test1 {
          public static void main(String[] arg) {

          }
      }
      </code>
      <console>
      vishalb:/home/vv145429/tiger/src/metadata/bugs 13 % javac -source 1.5 Test1.java
      Test1.java:3: cannot find symbol
      symbol : variable RUNTIME
      location: @interface ATTR1
      @Retention(RUNTIME) @interface ATTR1{
                 ^
      Test1.java:7: cannot find symbol
      symbol : variable SOURCE
      location: @interface ATTR2
      @Retention(SOURCE) @interface ATTR2 {
                 ^
      Test1.java:11: cannot find symbol
      symbol : variable CLASS
      location: @interface ATTR3
      @Retention(CLASS) @interface ATTR3 {
                 ^
      3 errors
      vishalb:/home/vv145429/tiger/src/metadata/bugs 14 %

      </console>

            gafter Neal Gafter (Inactive)
            vvegurusunw Viswadeep Veguru (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: