final JsHintProcessor processor = new JsHintProcessor();
final Callable<Void> task = new Callable<Void>() {
@Override
public Void call() {
try {
processor.process(new StringReader("alert(1);"), new StringWriter());
} catch (final Exception e) {
throw new RuntimeException(e);
}
return null;
}