How do I reference the GroovyObject instance from MetaClass methods in Groovy? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T07:29:05Zhttp://stackoverflow.com/feeds/question/550165http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/550165/how-do-i-reference-the-groovyobject-instance-from-metaclass-methods-in-groovy1How do I reference the GroovyObject instance from MetaClass methods in Groovy?Phil2009-02-15T02:02:45Z2009-02-15T10:21:47Z
<p>This is a contrived example of what I want to do, but minimally expresses the behavior desired. I want to reference the instance of the object on which the property access is being invoked. I tried 'this' first, but that refers to the enclosing class rather than either the MetaClass or the String instance. </p>
<pre><code>String.metaClass.propertyMissing = { String name ->
'I do not exist, but my name is ' + <the String instance> + '.' + $name
}
</code></pre>
http://stackoverflow.com/questions/550165/how-do-i-reference-the-groovyobject-instance-from-metaclass-methods-in-groovy/550651#5506511Answer by chanwit for How do I reference the GroovyObject instance from MetaClass methods in Groovy?chanwit2009-02-15T10:21:47Z2009-02-15T10:21:47Z<p>You can refer to the object with "delegate":</p>
<pre><code>String.metaClass.propertyMissing = { String name ->
"I do not exist, but my name is $delegate.$name"
}
println "a".me
</code></pre>