/[Apache-SVN]/incubator/derby/code/trunk/java/client/org/apache/derby/client/net/StatementReplyInterface.java
ViewVC logotype

Diff of /incubator/derby/code/trunk/java/client/org/apache/derby/client/net/StatementReplyInterface.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

--- incubator/derby/code/trunk/java/client/org/apache/derby/client/net/StatementReplyInterface.java	2005/05/02 05:18:08	165584
+++ incubator/derby/code/trunk/java/client/org/apache/derby/client/net/StatementReplyInterface.java	2005/05/02 06:25:59	165585
@@ -21,20 +21,25 @@
 package org.apache.derby.client.net;
 
 import org.apache.derby.client.am.DisconnectException;
-import org.apache.derby.client.am.StatementCallbackInterface;
 import org.apache.derby.client.am.PreparedStatementCallbackInterface;
+import org.apache.derby.client.am.StatementCallbackInterface;
+
+public interface StatementReplyInterface {
+    public void readPrepareDescribeOutput(StatementCallbackInterface statement) throws DisconnectException;
+
+    public void readExecuteImmediate(StatementCallbackInterface statement) throws DisconnectException;
+
+    public void readOpenQuery(StatementCallbackInterface statement) throws DisconnectException;
+
+    public void readExecute(PreparedStatementCallbackInterface preparedStatement) throws DisconnectException;
+
+    public void readPrepare(StatementCallbackInterface statement) throws DisconnectException;
+
+    public void readDescribeInput(PreparedStatementCallbackInterface preparedStatement) throws DisconnectException;
+
+    public void readDescribeOutput(PreparedStatementCallbackInterface preparedStatement) throws DisconnectException;
 
-public interface StatementReplyInterface
-{
-  public void readPrepareDescribeOutput (StatementCallbackInterface statement) throws DisconnectException;
-  public void readExecuteImmediate (StatementCallbackInterface statement) throws DisconnectException;
-  public void readOpenQuery (StatementCallbackInterface statement) throws DisconnectException;
-
-  public void readExecute (PreparedStatementCallbackInterface preparedStatement) throws DisconnectException;
-  public void readPrepare (StatementCallbackInterface statement) throws DisconnectException;
-  public void readDescribeInput (PreparedStatementCallbackInterface preparedStatement) throws DisconnectException;
-  public void readDescribeOutput (PreparedStatementCallbackInterface preparedStatement) throws DisconnectException;
-  public void readExecuteCall (StatementCallbackInterface statement) throws DisconnectException;
+    public void readExecuteCall(StatementCallbackInterface statement) throws DisconnectException;
 
-  public void readSetSpecialRegister (StatementCallbackInterface statement) throws DisconnectException;
+    public void readSetSpecialRegister(StatementCallbackInterface statement) throws DisconnectException;
 }

 

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26