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 mi...@apache.org on 2007/01/18 19:51:56 UTC

svn commit: r497536 - in /db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw: ContainerHandle.java Page.java

Author: mikem
Date: Thu Jan 18 10:51:56 2007
New Revision: 497536

URL: http://svn.apache.org/viewvc?view=rev&rev=497536
Log:
DERBY-2197 - minor javadoc fixes to problems caused by removing of interfaces
with previous checkin (496960).


Modified:
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerHandle.java
    db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerHandle.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerHandle.java?view=diff&rev=497536&r1=497535&r2=497536
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerHandle.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/ContainerHandle.java Thu Jan 18 10:51:56 2007
@@ -501,7 +501,6 @@
 
 
 		@see Page#unlatch
-		@see Page#fetch
 	*/
 	public void close();
 

Modified: db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java?view=diff&rev=497536&r1=497535&r2=497536
==============================================================================
--- db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java (original)
+++ db/derby/code/trunk/java/engine/org/apache/derby/iapi/store/raw/Page.java Thu Jan 18 10:51:56 2007
@@ -37,7 +37,7 @@
 	A record is a stream of bytes created from a row array. The record
 	contains one or more fields, fields have a one to one correlation with
 	the DataValueDescriptor's contained within a row array.
-  <P>
+    <P>
 	A Page represents <B>exclusive</B> access to a data page within a container.
 	Exclusive access is released by calling the unlatch() method, once that 
     occurs the caller must no longer use the Page reference.
@@ -53,7 +53,7 @@
 	<UL>
 	<LI> Obtaining the handle during this exclusive access of this page
 	<LI> Checking the record still exists with the method recordExists()
-	<LI> Not using a handle after a delete().
+	<LI> Not using a handle after a deleteAtSlot().
 	</UL>
 	<P>
 	Several of the methods in Page take a slot number as an argument.  A slot 
@@ -762,12 +762,6 @@
 	public int fetchNumFieldsAtSlot(int slot)
 		 throws StandardException;
 
-	/**
-		Mark the record identified by slot as deleted or undeleted according to the
-		delete flag.
-
-
-	*/
     /**
      * Mark the record at slot as deleted or undeleted according to delete flag.
      * <p>
@@ -803,7 +797,6 @@
      *                              the slot is not on the page.
      *
      * @see LockingPolicy
-     * @see Page#delete
      * @see LogicalUndo
      * @see LogicalUndoable
      *
@@ -958,7 +951,6 @@
 		@exception StandardException The container was not opened in update mode.
 		@exception StandardException if the slot is not on the page.
 
-		@see Page#update
 	*/
 	RecordHandle updateAtSlot(
     int                     slot,