Package groovy.lang

Annotation Type PackageScope


@Retention(RUNTIME) @Target({TYPE,FIELD}) @Deprecated public @interface PackageScope
Deprecated.
use groovy.transform.PackageScope
Class or field annotation used for turning off Groovy's auto property conversion of default or package scoped fields. Place it on the field(s) of interest or on the class to apply for all package-scoped fields. This transformation is normally only used in conjunction with a third-party library or framework which requires package scoping.
Author:
Paul King