You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2007/02/15 16:23:01 UTC

svn commit: r507959 - in /db/derby/code/trunk/java/engine/org/apache/derby: iapi/store/raw/xact/ impl/store/raw/xact/

Author: kahatlen
Date: Thu Feb 15 07:23:00 2007
New Revision: 507959

URL: http://svn.apache.org/viewvc?view=rev&rev=507959
Log:
Fixed some javadoc comments.

Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/RawTransaction.java
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/TransactionFactory.java
    db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/TransactionTable.java
    db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/Xact.java
    db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/XactFactory.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/RawTransaction.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/RawTransaction.java?view=diff&rev=507959&r1=507958&r2=507959
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/RawTransaction.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/RawTransaction.java Thu Feb 15 07:23:00 2007
@@ -338,7 +338,7 @@
 		throws StandardException;
 
 	
-    /*
+    /**
      * Make the transaction block the online backup.
      *
      * @param wait if <tt>true</tt>, waits until the transaction

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/TransactionFactory.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/TransactionFactory.java?view=diff&rev=507959&r1=507958&r2=507959
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/TransactionFactory.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/xact/TransactionFactory.java Thu Feb 15 07:23:00 2007
@@ -60,7 +60,7 @@
 	*/
 	public LockFactory getLockFactory();
 
-	/*
+	/**
 	 * Return the module providing XAresource interface to the transaction
      * table.
      *

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/TransactionTable.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/TransactionTable.java?view=diff&rev=507959&r1=507958&r2=507959
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/TransactionTable.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/TransactionTable.java Thu Feb 15 07:23:00 2007
@@ -167,7 +167,7 @@
 		}
 	}
 
-	/*
+	/**
 		remove the transaction Id an return false iff the transaction is found
 		in the table and it doesn't need exclusion during quiesce state
 	 */

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/Xact.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/Xact.java?view=diff&rev=507959&r1=507958&r2=507959
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/Xact.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/Xact.java Thu Feb 15 07:23:00 2007
@@ -2332,7 +2332,7 @@
 	}
 
 
-    /*
+    /**
      * Make the transaction block the online backup.
      *
      * @param wait if <tt>true</tt>, waits until the transaction
@@ -2352,7 +2352,7 @@
 		return backupBlocked;
 	}
 	
-	/*
+	/**
 	 * Unblock the backup, if it was blocked by some operation in 
 	 * this transaction. Unblocking is done at commit/abort of this 
 	 * transaction.
@@ -2651,20 +2651,20 @@
 	}
 
 	
-	/* 
+	/**
 	 * Get string id of the transaction that would be when the Transaction
 	 * is IN active state.
 	 *
-	 *This transaction "name" will be the same id which is returned in
+	 * This transaction "name" will be the same id which is returned in
 	 * the TransactionInfo information if Tx is already in Active State.
 	 * If the Transaction is in IDLE state, Transaction ID is 
 	 * incremented when getActiveStateTxIdString() on raw transaction is called,
 	 * instead of the Tx ID being incremented when Transaction gets into
 	 * active state. The reason for incrementing the Tx ID earlier than when Tx
 	 * is actually goes into active state is some debug statement cases like 
-	 * log statement text. SQL  statements are wriited  to log before they are
-	 * actully executed; In such cases we would like to display the actual TX ID on which 
-	 * locks are acquired when the statement is executed.
+	 * log statement text. SQL statements are written to log before they are
+	 * actually executed; In such cases we would like to display the actual TX
+	 * ID on which locks are acquired when the statement is executed.
 	 * @return The a string which identifies the transaction.  
 	 */
 	public String getActiveStateTxIdString()

Modified: db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/XactFactory.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/XactFactory.java?view=diff&rev=507959&r1=507958&r2=507959
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/XactFactory.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/impl/store/raw/xact/XactFactory.java Thu Feb 15 07:23:00 2007
@@ -667,7 +667,7 @@
 			add(t, excludeMe);
 	}
 
-	/*
+	/**
 	**	Set the shortTranId, this is called by the log factory after recovery
 	*/
 	public void resetTranId()
@@ -843,7 +843,7 @@
 
 
 
-	/*
+	/**
 		remove the transaction Id an return false iff the transaction is found
 		in the table and it doesn't need exclusion from quiesce state
 	 */
@@ -914,7 +914,7 @@
 		return null;
 	}
 
-	/*
+	/**
 		Return the transaction table to be logged with the checkpoint operation
 	 */
 	public Formatable getTransactionTable()
@@ -922,7 +922,7 @@
 		return ttab;
 	}
 
-	/*
+	/**
 		Use this transaction table, which is gotten from a checkpoint
 		operation.  Use ONLY during recovery.
 	 */
@@ -966,13 +966,15 @@
 	}
 
 
-	// @return false, if the Database creation finished
+	/**
+	 * @return false, if the Database creation finished
+	 */
 	public boolean inDatabaseCreation()
 	{
 		return inCreateNoLog;
 	}
 	
-	/*
+	/**
 	 * Return the module providing XAresource interface to the transaction 
      * table. 
      *