01: /*
02: * Copyright (c) 2006 Your Corporation. All Rights Reserved.
03: */
04:
05: /*
06: * Created by IntelliJ IDEA.
07: * User: Jacques
08: * Date: Jan 3, 2006
09: * Time: 5:23:25 AM
10: */
11: package com.technoetic.xplanner.util;
12:
13: public interface Callable {
14: Object run() throws Exception;
15:
16: }
|