Package org.codehaus.groovy.runtime.m12n
Class ExtensionModule
- java.lang.Object
 - 
- org.codehaus.groovy.runtime.m12n.ExtensionModule
 
 
- 
- Direct Known Subclasses:
 SimpleExtensionModule
public abstract class ExtensionModule extends java.lang.ObjectAn extension module is a class responsible for providing a list ofmeta methodsto the Groovy compiler and runtime. Those methods are use to "dynamically extend" existing classes by adding methods to existing classes.- Since:
 - 2.0.0
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ExtensionModule(java.lang.String moduleName, java.lang.String moduleVersion) 
- 
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract java.util.List<MetaMethod>getMetaMethods()java.lang.StringgetName()java.lang.StringgetVersion()java.lang.StringtoString() 
 - 
 
- 
- 
Method Detail
- 
getName
public java.lang.String getName()
 
- 
getVersion
public java.lang.String getVersion()
 
- 
getMetaMethods
public abstract java.util.List<MetaMethod> getMetaMethods()
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -