From Snipplr

Ok here is the script code, in the comments is the question and the exception thrown

class Class1 {
    def closure = {
        println this.class.name
        println delegate.class.name
        def nestedClos = {
            println owner.class.name
        }
        nestedClos()
    }
}

def clos = new Class1().closure
clos.delegate = this
clos()

//Now I want to add a new closure to Class1

def newClosure = {
    println "new Closure"
    println this.class.name
    println delegate.class.name
    def nestedClos = {
        println owner.class.name
    }
    nestedClos()
}

//getAbc to create a property, not a method
Class1.metaClass.getAbc = newClosure

//What happens here is that the property abc is not used as a closure per se, it's used
//as a property and when I execute it just run the closure and when I want to change
//the delegate, a null pointer is thrown
clos = new Class1().abc //abc executed instead of passing the reference closure
clos.delegate = this  //Exception!!!!
clos()
link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Ok, It's done it's not a fancy way, but I have the solution....yeah!

Create the property as object and later assign the closure

class Class1 {
    def closure = {
        println this.class.name
        println delegate.class.name
        def nestedClos = {
            println owner.class.name
        }
        nestedClos()
    }
}

def clos = new Class1().closure
clos.delegate = this
clos()

//Now I want to add a new closure to Class1

def newClosure = {
    println "new Closure"
    println this.class.name
    println delegate.class.name
    def nestedClos = {
        println owner.class.name
    }
    nestedClos()
}

//before edit
//Class1.metaClass.abc = new Object()
Class1.metaClass.abc = newClosure    


def cl = new Class1()
//Before edit
//For the sake of simplicity we are going to use & for the method
//clos = cl.abc 
closs = cl.&abc
clos.delegate = this
clos()
link|improve this answer
Ok, it works but I need to "implement" abc as closure with all the instances...... – jjchiw Oct 29 '09 at 13:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.