How do I reference the GroovyObject instance from MetaClass methods in Groovy? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:29:05Z http://stackoverflow.com/feeds/question/550165 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/550165/how-do-i-reference-the-groovyobject-instance-from-metaclass-methods-in-groovy 1 How do I reference the GroovyObject instance from MetaClass methods in Groovy? Phil 2009-02-15T02:02:45Z 2009-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 -&gt; 'I do not exist, but my name is ' + &lt;the String instance&gt; + '.' + $name } </code></pre> http://stackoverflow.com/questions/550165/how-do-i-reference-the-groovyobject-instance-from-metaclass-methods-in-groovy/550651#550651 1 Answer by chanwit for How do I reference the GroovyObject instance from MetaClass methods in Groovy? chanwit 2009-02-15T10:21:47Z 2009-02-15T10:21:47Z <p>You can refer to the object with "delegate":</p> <pre><code>String.metaClass.propertyMissing = { String name -&gt; "I do not exist, but my name is $delegate.$name" } println "a".me </code></pre>