This content has been marked as final.
Show 1 reply
-
1. Re: How do I resolve annotations?
dxbcto Aug 20, 2005 11:10 PM (in response to dxbcto)Ok....I forgot to annotate my billable interface with a proper retention policy. The new billable interface (that now works) looks like this:
@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface billable { int amount() default 0; }
Thanks.