public class Proxy extends GroovyObjectSupport
Dynamic groovy proxy for another object. All method invocations get forwarded to actual object, unless the proxy overrides it. See groovy/util/ProxyTest.groovy for usage details.
Type Params | Return Type | Name and description |
---|---|---|
|
public Object |
getAdaptee() |
|
public Object |
invokeMethod(String name, Object args) |
|
public Iterator |
iterator() |
|
public void |
setAdaptee(Object adaptee) |
|
public Proxy |
wrap(Object adaptee) This method is for convenience. |
Methods inherited from class | Name |
---|---|
class GroovyObjectSupport |
getMetaClass, setMetaClass |