Author: mheath
Date: Sat Jan 20 13:54:20 2007
New Revision: 498185

URL: http://svn.apache.org/viewvc?view=rev&rev=498185
Log:
Fixed formatting.

Modified:
    mina/sandbox/mheath/aioj/trunk/src/main/java/org/apache/aio/AioFuture.java

Modified: 
mina/sandbox/mheath/aioj/trunk/src/main/java/org/apache/aio/AioFuture.java
URL: 
http://svn.apache.org/viewvc/mina/sandbox/mheath/aioj/trunk/src/main/java/org/apache/aio/AioFuture.java?view=diff&rev=498185&r1=498184&r2=498185
==============================================================================
--- mina/sandbox/mheath/aioj/trunk/src/main/java/org/apache/aio/AioFuture.java 
(original)
+++ mina/sandbox/mheath/aioj/trunk/src/main/java/org/apache/aio/AioFuture.java 
Sat Jan 20 13:54:20 2007
@@ -24,15 +24,15 @@
 
 public interface AioFuture<V, F extends AioFuture> extends Future<V> {
 
-       void addCompletionHandler(AioCompletionHandler<F> completionHandler);
-       
-       void removeCompletionHandler(AioCompletionHandler<F> completionHandler);
-       
-       AsynchronousFileChannel getChannel();
-       
-       Object getAttachment();
-       
-       void setAttachment(Object attachment);
+    void addCompletionHandler(AioCompletionHandler<F> completionHandler);
 
-        public V get() throws InterruptedException, ExecutionException, 
AioCallbackException;
+    void removeCompletionHandler(AioCompletionHandler<F> completionHandler);
+
+    AsynchronousFileChannel getChannel();
+
+    Object getAttachment();
+
+    void setAttachment(Object attachment);
+
+    V get() throws InterruptedException, ExecutionException, 
AioCallbackException;
 }


Reply via email to