More JavaDoc

This commit is contained in:
Trustin Lee 2008-08-10 15:25:16 +00:00
parent e7e22321d0
commit c7da1869f8
5 changed files with 19 additions and 0 deletions

View File

@ -23,6 +23,8 @@
package org.jboss.netty.util;
/**
* Conversion utility class to parse a property represented as a string.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*

View File

@ -25,6 +25,8 @@ package org.jboss.netty.util;
import java.util.concurrent.Executor;
/**
* {@link Executor} which executes the command in the caller thread.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*

View File

@ -25,6 +25,16 @@ package org.jboss.netty.util;
import org.jboss.netty.logging.InternalLogger;
import org.jboss.netty.logging.InternalLoggerFactory;
/**
* {@link Runnable} that changes the current thread name and reverts it back
* when its execution ends.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
*/
public class NamePreservingRunnable implements Runnable {
private static final InternalLogger logger =
InternalLoggerFactory.getInstance(NamePreservingRunnable.class);

View File

@ -26,6 +26,9 @@ import java.io.FilterInputStream;
import java.io.InputStream;
/**
* {@link FilterInputStream} which allows a user to change the underlying
* stream at any time.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*

View File

@ -32,6 +32,8 @@ import java.util.UUID;
import java.util.concurrent.atomic.AtomicInteger;
/**
* Generates a time-based {@link UUID}.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)
*