01: package snow.utils;
02:
03: import java.lang.annotation.*;
04:
05: /** just an attemp ! not working !!
06: */
07: @Inherited
08: @Target(value={ElementType.TYPE,ElementType.FIELD,ElementType.METHOD,ElementType.PARAMETER,ElementType.CONSTRUCTOR,ElementType.LOCAL_VARIABLE})
09: @Retention(RetentionPolicy.SOURCE)
10: public @interface SuppressWarningsRecurse //implements SuppressWarnings
11: {
12:
13: }
|