KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > remoting > Future


1 package hudson.remoting;
2
3 /**
4  * Alias to {@link Future}.
5  *
6  * <p>
7  * This alias is defined so that retro-translation won't affect
8  * the publicly committed signature of the API.
9  *
10  * @author Kohsuke Kawaguchi
11  */

12 public interface Future<V> extends java.util.concurrent.Future JavaDoc<V> {
13 }
14
Popular Tags