@Target(value={TYPE,PACKAGE})
@Retention(value=RUNTIME)
public @interface GlobalScope
This annotation is used to mark a global scope type. This means that all its static methods and fields will be called
without prefixing it with the name of the type. It is useful to define global objects that are defined by external
libraries.
- Author:
- acraciun