[jboss-cvs] JBossAS SVN: r91975 - projects/jboss-threads/trunk/main/src/main/java/org/jboss/threads.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 4 16:54:24 EDT 2009


Author: david.lloyd at jboss.com
Date: 2009-08-04 16:54:24 -0400 (Tue, 04 Aug 2009)
New Revision: 91975

Modified:
   projects/jboss-threads/trunk/main/src/main/java/org/jboss/threads/JBossThread.java
Log:
javadoc

Modified: projects/jboss-threads/trunk/main/src/main/java/org/jboss/threads/JBossThread.java
===================================================================
--- projects/jboss-threads/trunk/main/src/main/java/org/jboss/threads/JBossThread.java	2009-08-04 20:38:24 UTC (rev 91974)
+++ projects/jboss-threads/trunk/main/src/main/java/org/jboss/threads/JBossThread.java	2009-08-04 20:54:24 UTC (rev 91975)
@@ -32,23 +32,62 @@
 
     private InterruptHandler interruptHandler;
 
+    /**
+     * Construct a new instance.
+     *
+     * @param target the runnable target
+     * @see #Thread(Runnable)
+     */
     public JBossThread(final Runnable target) {
         super(target);
     }
 
+    /**
+     * Construct a new instance.
+     *
+     * @param target the runnable target
+     * @param name the initial thread name
+     * @see #Thread(Runnable, String)
+     */
     public JBossThread(final Runnable target, final String name) {
         super(target, name);
     }
 
-    public JBossThread(final ThreadGroup group, final Runnable target) {
+    /**
+     * Construct a new instance.
+     *
+     * @param group the parent thread group
+     * @param target the runnable target
+     * @see #Thread(ThreadGroup, Runnable)
+     * @throws SecurityException if the current thread cannot create a thread in the specified thread group
+     */
+    public JBossThread(final ThreadGroup group, final Runnable target) throws SecurityException {
         super(group, target);
     }
 
-    public JBossThread(final ThreadGroup group, final Runnable target, final String name) {
+    /**
+     * Construct a new instance.
+     *
+     * @param group the parent thread group
+     * @param target the runnable target
+     * @param name the initial thread name
+     * @see #Thread(ThreadGroup,Runnable,String)
+     * @throws SecurityException if the current thread cannot create a thread in the specified thread group
+     */
+    public JBossThread(final ThreadGroup group, final Runnable target, final String name) throws SecurityException {
         super(group, target, name);
     }
 
-    public JBossThread(final ThreadGroup group, final Runnable target, final String name, final long stackSize) {
+    /**
+     * Construct a new instance.
+     *
+     * @param group the parent thread group
+     * @param target the runnable target
+     * @param name the initial thread name
+     * @see #Thread(ThreadGroup,Runnable,String,long)
+     * @throws SecurityException if the current thread cannot create a thread in the specified thread group
+     */
+    public JBossThread(final ThreadGroup group, final Runnable target, final String name, final long stackSize) throws SecurityException {
         super(group, target, name, stackSize);
     }
 




More information about the jboss-cvs-commits mailing list