diff options
author | Sven Gothel <[email protected]> | 2013-01-18 02:21:40 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-01-18 02:21:40 +0100 |
commit | 029e941b12165e8fb04eae440812d5ea5ba1608d (patch) | |
tree | 2473ebb896b23d805d27d47d6d0a7a6f5a241c2e /src/java/com/jogamp/common/util/locks | |
parent | 41e7c7ca3ae2005b23182d7f28abd0b8ed11e73c (diff) |
RecursiveLock.getHoldCount(): Fix API doc formatting
Diffstat (limited to 'src/java/com/jogamp/common/util/locks')
-rw-r--r-- | src/java/com/jogamp/common/util/locks/RecursiveLock.java | 11 |
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 > 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 > 1 identifies this lock as recursively lock.</li> + * </ul> */ int getHoldCount(); |