Class GroovyTypeCheckingExtensionSupport.TypeCheckingDSL
- java.lang.Object
- 
- groovy.lang.GroovyObjectSupport
- 
- groovy.lang.Script
- 
- org.codehaus.groovy.transform.stc.GroovyTypeCheckingExtensionSupport.TypeCheckingDSL
 
 
 
- 
- All Implemented Interfaces:
- GroovyObject
 - Enclosing class:
- GroovyTypeCheckingExtensionSupport
 
 public abstract static class GroovyTypeCheckingExtensionSupport.TypeCheckingDSL extends Script 
- 
- 
Constructor SummaryConstructors Constructor Description TypeCheckingDSL()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetProperty(String property)Retrieves a property value.ObjectinvokeMethod(String name, Object args)Invoke a method (or closure in the binding) defined.voidsetProperty(String property, Object newValue)Sets the given property to the new value.- 
Methods inherited from class groovy.lang.Scriptevaluate, evaluate, getBinding, print, printf, printf, println, println, run, run, setBinding
 - 
Methods inherited from class groovy.lang.GroovyObjectSupportgetMetaClass, setMetaClass
 
- 
 
- 
- 
- 
Method Detail- 
getPropertypublic Object getProperty(String property) Description copied from interface:GroovyObjectRetrieves a property value.- Specified by:
- getPropertyin interface- GroovyObject
- Overrides:
- getPropertyin class- Script
- Parameters:
- property- the name of the property of interest
- Returns:
- the given property
 
 - 
setPropertypublic void setProperty(String property, Object newValue) Description copied from interface:GroovyObjectSets the given property to the new value.- Specified by:
- setPropertyin interface- GroovyObject
- Overrides:
- setPropertyin class- Script
- Parameters:
- property- the name of the property of interest
- newValue- the new value for the property
 
 - 
invokeMethodpublic Object invokeMethod(String name, Object args) Description copied from class:ScriptInvoke a method (or closure in the binding) defined.- Specified by:
- invokeMethodin interface- GroovyObject
- Overrides:
- invokeMethodin class- Script
- Parameters:
- name- method to call
- args- arguments to pass to the method
- Returns:
- value
 
 
- 
 
-