blob: b96983b5b4a7ac829af0d4a774c787e61fbd2c03 [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.transformer;
import org.eclipse.jpt.common.utility.closure.InterruptibleClosure;
import org.eclipse.jpt.common.utility.internal.ObjectTools;
import org.eclipse.jpt.common.utility.transformer.InterruptibleTransformer;
/**
* @see ClosureTransformer
*/
public class InterruptibleClosureTransformer<I, O>
implements InterruptibleTransformer<I, O>
{
private final InterruptibleClosure<? super I> closure;
public InterruptibleClosureTransformer(InterruptibleClosure<? super I> closure) {
super();
if (closure == null) {
throw new NullPointerException();
}
this.closure = closure;
}
public O transform(I input) throws InterruptedException {
this.closure.execute(input);
return null;
}
@Override
public String toString() {
return ObjectTools.toString(this, this.closure);
}
}