blob: 0c3ac7163f528e5178472ddca4a735a218197e2f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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.InterruptibleClosure;
import org.eclipse.jpt.common.utility.command.InterruptibleCommand;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
/**
* @see NullCheckClosureWrapper
* @see AbstractInterruptibleClosure
* @see NullClosure
* @see InterruptibleClosureAdapter
*/
public class NullCheckInterruptibleClosureWrapper<A>
implements InterruptibleClosure<A>
{
private final InterruptibleClosure<? super A> closure;
private final InterruptibleCommand nullCommand;
public NullCheckInterruptibleClosureWrapper(InterruptibleClosure<? super A> closure, InterruptibleCommand nullCommand) {
super();
if (closure == null) {
throw new NullPointerException();
}
this.closure = closure;
this.nullCommand = nullCommand;
}
public void execute(A argument) throws InterruptedException {
if (argument == null) {
this.nullCommand.execute();
} else {
this.closure.execute(argument);
}
}
@Override
public String toString() {
return ObjectTools.toString(this, this.closure);
}
}