summaryrefslogtreecommitdiff
path: root/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-08-20 12:54:24 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-08-20 12:54:24 +0100
commitf6a62d9e4106f36aff899c847d63e3198532796e (patch)
tree2c006788af8c1367510d7cf2706fd1b8cdaa6b12 /jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java
parentaf4ca5a8c6e2848cb855a15986d5c4c9991140bf (diff)
Java update - fix various javadoc issues
Along the way, remove some javadoc comments that are completely incorrect. Change-Id: I02f96b6cbe665d2c10bd6ee245a7d8e2eef0f755
Diffstat (limited to 'jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java')
-rw-r--r--jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java b/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java
index e0ec809c5a12..f9c3353dd1a4 100644
--- a/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java
+++ b/jurt/com/sun/star/lib/uno/environments/remote/JobQueue.java
@@ -32,7 +32,7 @@ import com.sun.star.lang.DisposedException;
* @author Kay Ramme
* @see com.sun.star.lib.uno.environments.remote.ThreadPool
* @see com.sun.star.lib.uno.environments.remote.Job
- * @see com.sun.star.lib.uno.environments.remote.ThreadID
+ * @see com.sun.star.lib.uno.environments.remote.ThreadId
* @since UDK1.0
*/
public class JobQueue {
@@ -112,7 +112,7 @@ public class JobQueue {
* which belongs to the given sync job queue.
* <p>
* @param threadId the thread id
- * @see com.sun.star.lib.uno.environments.remote.ThreadID
+ * @see com.sun.star.lib.uno.environments.remote.ThreadId
*/
JobQueue(JavaThreadPoolFactory javaThreadPoolFactory, ThreadId threadId) {
_javaThreadPoolFactory = javaThreadPoolFactory;
@@ -139,7 +139,7 @@ public class JobQueue {
* <p>
* @param threadId the thread id
* @param createThread if true, the queue creates a worker thread if needed
- * @see com.sun.star.lib.uno.environments.remote.ThreadID
+ * @see com.sun.star.lib.uno.environments.remote.ThreadId
*/
JobQueue(JavaThreadPoolFactory javaThreadPoolFactory, ThreadId threadId, boolean createThread){
_javaThreadPoolFactory = javaThreadPoolFactory;
@@ -154,7 +154,7 @@ public class JobQueue {
* Gives the thread id of this queue
* <p>
* @return the thread id
- * @see com.sun.star.lib.uno.environments.remote.ThreadID
+ * @see com.sun.star.lib.uno.environments.remote.ThreadId
*/
ThreadId getThreadId() {
return _threadId;