To embed this script in your site, just drop the content below where you want to embed it.
class Foo { String name } class Bar { Foo foo } Bar.metaClass.setFoo= {String value-> Foo foo = new Foo() foo.name = value delegate.setFoo(foo) } Bar bar = new Bar() bar.foo = "test" bar.foo.name