01: /*
02: * Created on Jun 21, 2005
03: */
04: package uk.org.ponder.util;
05:
06: /**
07: * RunnableWrapper is now deprecated - use {@link RunnableInvoker} instead.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11: public interface RunnableWrapper {
12: public Runnable wrapRunnable(Runnable towrap);
13: }
|