aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-01-18 02:21:40 +0100
committerSven Gothel <[email protected]>2013-01-18 02:21:40 +0100
commit029e941b12165e8fb04eae440812d5ea5ba1608d (patch)
tree2473ebb896b23d805d27d47d6d0a7a6f5a241c2e /src
parent41e7c7ca3ae2005b23182d7f28abd0b8ed11e73c (diff)
RecursiveLock.getHoldCount(): Fix API doc formatting
Diffstat (limited to 'src')
-rw-r--r--src/java/com/jogamp/common/util/locks/RecursiveLock.java11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/java/com/jogamp/common/util/locks/RecursiveLock.java b/src/java/com/jogamp/common/util/locks/RecursiveLock.java
index 9eb9c8c..3e0a873 100644
--- a/src/java/com/jogamp/common/util/locks/RecursiveLock.java
+++ b/src/java/com/jogamp/common/util/locks/RecursiveLock.java
@@ -32,10 +32,13 @@ package com.jogamp.common.util.locks;
* Reentrance capable locking toolkit.
*/
public interface RecursiveLock extends ThreadLock {
- /** Return the number of locks issued to this lock by the same thread.
- * A hold count of 0 identifies this lock as unlocked.<br>
- * A hold count of 1 identifies this lock as locked.<br>
- * A hold count of &gt; 1 identifies this lock as recursively lock.<br>
+ /**
+ * Return the number of locks issued to this lock by the same thread.
+ * <ul>
+ * <li>A hold count of 0 identifies this lock as unlocked.</li>
+ * <li>A hold count of 1 identifies this lock as locked.</li>
+ * <li>A hold count of &gt; 1 identifies this lock as recursively lock.</li>
+ * </ul>
*/
int getHoldCount();