Groovy 2.0.0-rc-2

groovy.transform
[Java] Annotation Type TypeChecked

java.lang.Object
  groovy.transform.TypeChecked

@Retention(RetentionPolicy.SOURCE)
@Target({   ElementType.METHOD,         ElementType.TYPE,
            ElementType.CONSTRUCTOR
})
@GroovyASTTransformationClass("org.codehaus.groovy.transform.StaticTypesTransformation")
public @interface TypeChecked

This will let the Groovy compiler use compile time checks in the style of Java.

Authors:
Jochen "blackdrag" Theodorou


Nested Class Summary
@interface TypeChecked.TypeCheckingInfo

This annotation is added by

TypeChecked:
on methods which have type checking turned on.

   
Optional Element Summary
Class pluginFactory

@default TypeCheckerPluginFactory.class

TypeCheckingMode value

@default TypeCheckingMode.PASS

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

Element Detail

pluginFactory

public Class pluginFactory
@default TypeCheckerPluginFactory.class


value

public TypeCheckingMode value
@default TypeCheckingMode.PASS


 

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