[Jsxe-cvs] SF.net SVN: jsxe: [1243] branches/jsxe2/src/net/sourceforge/jsxe/dom/ XMLDocument.java
Status: Inactive
Brought to you by:
ian_lewis
From: <ian...@us...> - 2006-09-06 23:23:28
|
Revision: 1243 http://svn.sourceforge.net/jsxe/?rev=1243&view=rev Author: ian_lewis Date: 2006-09-06 16:23:23 -0700 (Wed, 06 Sep 2006) Log Message: ----------- Updated javadoc Modified Paths: -------------- branches/jsxe2/src/net/sourceforge/jsxe/dom/XMLDocument.java Modified: branches/jsxe2/src/net/sourceforge/jsxe/dom/XMLDocument.java =================================================================== --- branches/jsxe2/src/net/sourceforge/jsxe/dom/XMLDocument.java 2006-09-06 23:22:12 UTC (rev 1242) +++ branches/jsxe2/src/net/sourceforge/jsxe/dom/XMLDocument.java 2006-09-06 23:23:23 UTC (rev 1243) @@ -1183,6 +1183,7 @@ /** * The buffer is guaranteed not to change between calls to * {@link #readLock()} and {@link #readUnlock()}. + * @since jsXe XX.XX */ public void readLock() { lock.readLock(); @@ -1192,6 +1193,7 @@ /** * The buffer is guaranteed not to change between calls to * {@link #readLock()} and {@link #readUnlock()}. + * @since jsXe XX.XX */ public void readUnlock() { lock.readUnlock(); @@ -1201,6 +1203,7 @@ /** * Attempting to obtain read lock will block between calls to * {@link #writeLock()} and {@link #writeUnlock()}. + * @since jsXe XX.XX */ public void writeLock() { lock.writeLock(); @@ -1210,6 +1213,7 @@ /** * Attempting to obtain read lock will block between calls to * {@link #writeLock()} and {@link #writeUnlock()}. + * @since jsXe XX.XX */ public void writeUnlock() { lock.writeUnlock(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |