Groovy 1.8.4

groovy.lang
[Java] Annotation Type PackageScope

java.lang.Object
  groovy.lang.PackageScope

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.FIELD})
@GroovyASTTransformationClass("org.codehaus.groovy.transform.PackageScopeASTTransformation")
@Deprecated
public @interface 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.

deprecated:
use groovy.transform.PackageScope
Authors:
Paul King


Method Summary
 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Copyright © 2003-2011 The Codehaus. All rights reserved.