More JavaDoc
This commit is contained in:
parent
e7e22321d0
commit
c7da1869f8
@ -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)
|
||||
*
|
||||
|
@ -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)
|
||||
*
|
||||
|
@ -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);
|
||||
|
@ -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)
|
||||
*
|
||||
|
@ -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)
|
||||
*
|
||||
|
Loading…
Reference in New Issue
Block a user