[Mulgara-svn] r532 - branches/nw-interface/src/jar/query/java/org/mulgara/query/operation

pag at mulgara.org pag at mulgara.org
Tue Nov 13 22:01:50 UTC 2007


Author: pag
Date: 2007-11-13 16:01:50 -0600 (Tue, 13 Nov 2007)
New Revision: 532

Modified:
   branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Command.java
   branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/LocalCommand.java
   branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ServerCommand.java
   branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/TransactionCommand.java
Log:
Changed the name of isTxOp() to isTxCommitRollback() since SetAutoCommit is a TxOp, and the distinction was not clear.

Modified: branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Command.java
===================================================================
--- branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Command.java	2007-11-13 21:59:53 UTC (rev 531)
+++ branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/Command.java	2007-11-13 22:01:50 UTC (rev 532)
@@ -30,7 +30,7 @@
    * Indicates that the command modifies the state in a transaction.
    * @return <code>true</code> If the transaction state is to be modified.
    */
-  boolean isTxOperation();
+  boolean isTxCommitRollback();
   
   /**
    * Indicates if an AST element is an operation for a local client.

Modified: branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/LocalCommand.java
===================================================================
--- branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/LocalCommand.java	2007-11-13 21:59:53 UTC (rev 531)
+++ branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/LocalCommand.java	2007-11-13 22:01:50 UTC (rev 532)
@@ -31,7 +31,7 @@
    * Indicates that the command modifies the state in a transaction.
    * @return <code>true</code> If the transaction state is to be modified.
    */
-  public boolean isTxOperation() {
+  public boolean isTxCommitRollback() {
     return false;
   }
   

Modified: branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ServerCommand.java
===================================================================
--- branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ServerCommand.java	2007-11-13 21:59:53 UTC (rev 531)
+++ branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/ServerCommand.java	2007-11-13 22:01:50 UTC (rev 532)
@@ -57,7 +57,7 @@
    * Indicates that the command modifies the state in a transaction.
    * @return <code>true</code> If the transaction state is to be modified.
    */
-  public boolean isTxOperation() {
+  public boolean isTxCommitRollback() {
     return false;
   }
   

Modified: branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/TransactionCommand.java
===================================================================
--- branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/TransactionCommand.java	2007-11-13 21:59:53 UTC (rev 531)
+++ branches/nw-interface/src/jar/query/java/org/mulgara/query/operation/TransactionCommand.java	2007-11-13 22:01:50 UTC (rev 532)
@@ -31,7 +31,7 @@
    * Indicates that the command modifies the state in a transaction.
    * @return <code>true</code> If the transaction state is to be modified.
    */
-  public final boolean isTxOperation() {
+  public final boolean isTxCommitRollback() {
     return true;
   }
   




More information about the Mulgara-svn mailing list