blob: b1410f404d52b9f9782ab4ca5d1eed7f34831c51 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.internal.closure;
import org.eclipse.jpt.common.utility.closure.Closure;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
/**
* Closure wrapper that can have its wrapped closure changed,
* allowing a client to change a previously-supplied closure's
* behavior mid-stream.
*
* @param <A> the type of the object passed to the closure
*
* @see #setClosure(Closure)
*/
public class ClosureWrapper<A>
implements Closure<A>
{
protected volatile Closure<? super A> closure;
public ClosureWrapper(Closure<? super A> closure) {
super();
if (closure == null) {
throw new NullPointerException();
}
this.closure = closure;
}
public void execute(A argument) {
this.closure.execute(argument);
}
public void setClosure(Closure<? super A> closure) {
if (closure == null) {
throw new NullPointerException();
}
this.closure = closure;
}
@Override
public String toString() {
return ObjectTools.toString(this, this.closure);
}
}