All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hudson.util.spring.ClosureScript Maven / Gradle / Ivy

package hudson.util.spring;

import groovy.lang.Binding;
import groovy.lang.Closure;
import groovy.lang.GroovyObject;
import groovy.lang.MissingMethodException;
import groovy.lang.MissingPropertyException;
import groovy.lang.Script;

/**
 * {@link Script} that performs method invocations and property access like {@link Closure} does.
 *
 * 

* For example, when the script is: * *

 * a = 1;
 * b(2);
 * 
 *
 * 

* Using {@link ClosureScript} as the base class would run it as: * *

 * delegate.a = 1;
 * delegate.b(2);
 * 
* * ... whereas in plain {@link Script}, this will be run as: * *
 * binding.setProperty("a",1);
 * ((Closure)binding.getProperty("b")).call(2);
 * 
* * @author Kohsuke Kawaguchi */ // TODO: moved to stapler public abstract class ClosureScript extends Script { private GroovyObject delegate; protected ClosureScript() { super(); } protected ClosureScript(Binding binding) { super(binding); } /** * Sets the delegation target. */ public void setDelegate(GroovyObject delegate) { this.delegate = delegate; } public Object invokeMethod(String name, Object args) { try { return delegate.invokeMethod(name,args); } catch (MissingMethodException mme) { return super.invokeMethod(name, args); } } public Object getProperty(String property) { try { return delegate.getProperty(property); } catch (MissingPropertyException e) { return super.getProperty(property); } } public void setProperty(String property, Object newValue) { try { delegate.setProperty(property,newValue); } catch (MissingPropertyException e) { super.setProperty(property,newValue); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy