X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Fbind%2Fbind.java;h=47fe91b4be3ed35766ced7e42257f221cebea372;hp=4441ee1320027bfb7e5efea030fc201b7ca5b0a1;hb=f8dec42308b5eb1196db5bf56bb2f5426b4a76af;hpb=3b0359f6248ca6b2ef5250c24dd49b0fa434fd1f diff --git a/src/edu/berkeley/sbp/bind/bind.java b/src/edu/berkeley/sbp/bind/bind.java index 4441ee1..47fe91b 100644 --- a/src/edu/berkeley/sbp/bind/bind.java +++ b/src/edu/berkeley/sbp/bind/bind.java @@ -9,6 +9,7 @@ import java.lang.annotation.*; import java.lang.reflect.*; import java.io.*; +@Retention(RetentionPolicy.RUNTIME) public @interface bind { /** * Constructors, classes, and methods with this attribute will @@ -20,7 +21,8 @@ public @interface bind { @Retention(RetentionPolicy.RUNTIME) public static @interface nonterminal { String value() default ""; } */ - @Retention(RetentionPolicy.RUNTIME) public static @interface raw { } + @Retention(RetentionPolicy.RUNTIME) + public static @interface raw { } /** * Constructors, classes, and methods with this attribute will @@ -29,7 +31,8 @@ public @interface bind { * name is used. */ - @Retention(RetentionPolicy.RUNTIME) public static @interface as { String value() default ""; } + @Retention(RetentionPolicy.RUNTIME) + public static @interface as { String value() default ""; } /** @@ -52,5 +55,6 @@ public @interface bind { * arg-compatible, or if one of its constructors is arg-compatible. * */ - @Retention(RetentionPolicy.RUNTIME) public static @interface arg { String value() default ""; } + @Retention(RetentionPolicy.RUNTIME) + public static @interface arg { String value() default ""; } }