Merge pull request #95 from CruzBishop/task-61

.gitignore update, some task documentation, removal of @version tags
This commit is contained in:
Norman Maurer 2011-12-01 04:15:38 -08:00
commit 55e7a85160
534 changed files with 244 additions and 984 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@
/*.iml /*.iml
/*.ipr /*.ipr
/*.iws /*.iws
/*.geany

View File

@ -43,8 +43,6 @@ import org.jboss.netty.util.ExternalResourceReleasable;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.uses org.jboss.netty.channel.ChannelFactory * @apiviz.uses org.jboss.netty.channel.ChannelFactory
*/ */
public class Bootstrap implements ExternalResourceReleasable { public class Bootstrap implements ExternalResourceReleasable {

View File

@ -106,8 +106,6 @@ import org.jboss.netty.channel.Channels;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
*/ */
public class ClientBootstrap extends Bootstrap { public class ClientBootstrap extends Bootstrap {

View File

@ -115,8 +115,6 @@ import org.jboss.netty.channel.Channels;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
*/ */
public class ConnectionlessBootstrap extends Bootstrap { public class ConnectionlessBootstrap extends Bootstrap {

View File

@ -156,8 +156,6 @@ import org.jboss.netty.channel.SimpleChannelUpstreamHandler;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
*/ */
public class ServerBootstrap extends Bootstrap { public class ServerBootstrap extends Bootstrap {

View File

@ -29,8 +29,6 @@ import java.nio.charset.Charset;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public abstract class AbstractChannelBuffer implements ChannelBuffer { public abstract class AbstractChannelBuffer implements ChannelBuffer {

View File

@ -22,8 +22,6 @@ import java.nio.ByteOrder;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public abstract class AbstractChannelBufferFactory implements ChannelBufferFactory { public abstract class AbstractChannelBufferFactory implements ChannelBufferFactory {

View File

@ -25,8 +25,6 @@ import java.nio.ByteOrder;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class BigEndianHeapChannelBuffer extends HeapChannelBuffer { public class BigEndianHeapChannelBuffer extends HeapChannelBuffer {

View File

@ -31,9 +31,6 @@ import java.nio.channels.ScatteringByteChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class ByteBufferBackedChannelBuffer extends AbstractChannelBuffer { public class ByteBufferBackedChannelBuffer extends AbstractChannelBuffer {

View File

@ -232,8 +232,6 @@ import java.nio.charset.UnsupportedCharsetException;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
*/ */
public interface ChannelBuffer extends Comparable<ChannelBuffer> { public interface ChannelBuffer extends Comparable<ChannelBuffer> {

View File

@ -23,7 +23,6 @@ import java.nio.ByteOrder;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public interface ChannelBufferFactory { public interface ChannelBufferFactory {

View File

@ -28,8 +28,6 @@ package org.jboss.netty.buffer;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.uses org.jboss.netty.buffer.ChannelBuffer * @apiviz.uses org.jboss.netty.buffer.ChannelBuffer
*/ */
public interface ChannelBufferIndexFinder { public interface ChannelBufferIndexFinder {

View File

@ -35,8 +35,6 @@ import java.io.InputStream;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @see ChannelBufferOutputStream * @see ChannelBufferOutputStream
* @apiviz.uses org.jboss.netty.buffer.ChannelBuffer * @apiviz.uses org.jboss.netty.buffer.ChannelBuffer
*/ */

View File

@ -34,8 +34,6 @@ import java.io.OutputStream;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @see ChannelBufferInputStream * @see ChannelBufferInputStream
* @apiviz.uses org.jboss.netty.buffer.ChannelBuffer * @apiviz.uses org.jboss.netty.buffer.ChannelBuffer
*/ */

View File

@ -85,8 +85,6 @@ import org.jboss.netty.util.CharsetUtil;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
* @apiviz.has org.jboss.netty.buffer.ChannelBuffer oneway - - creates * @apiviz.has org.jboss.netty.buffer.ChannelBuffer oneway - - creates
*/ */

View File

@ -35,9 +35,6 @@ import java.util.List;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @author Frederic Bregier (fredbregier@free.fr) * @author Frederic Bregier (fredbregier@free.fr)
*
* @version $Rev$, $Date$
*
*/ */
public class CompositeChannelBuffer extends AbstractChannelBuffer { public class CompositeChannelBuffer extends AbstractChannelBuffer {

View File

@ -32,7 +32,6 @@ import java.nio.ByteOrder;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public class DirectChannelBufferFactory extends AbstractChannelBufferFactory { public class DirectChannelBufferFactory extends AbstractChannelBufferFactory {

View File

@ -31,9 +31,6 @@ import java.nio.channels.ScatteringByteChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DuplicatedChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer { public class DuplicatedChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer {

View File

@ -31,9 +31,6 @@ import java.nio.channels.ScatteringByteChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DynamicChannelBuffer extends AbstractChannelBuffer { public class DynamicChannelBuffer extends AbstractChannelBuffer {

View File

@ -28,8 +28,6 @@ import java.nio.channels.ScatteringByteChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public abstract class HeapChannelBuffer extends AbstractChannelBuffer { public abstract class HeapChannelBuffer extends AbstractChannelBuffer {

View File

@ -26,7 +26,6 @@ import java.nio.ByteOrder;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public class HeapChannelBufferFactory extends AbstractChannelBufferFactory { public class HeapChannelBufferFactory extends AbstractChannelBufferFactory {

View File

@ -25,8 +25,6 @@ import java.nio.ByteOrder;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class LittleEndianHeapChannelBuffer extends HeapChannelBuffer { public class LittleEndianHeapChannelBuffer extends HeapChannelBuffer {

View File

@ -31,9 +31,6 @@ import java.nio.channels.ScatteringByteChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class ReadOnlyChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer { public class ReadOnlyChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer {

View File

@ -32,9 +32,6 @@ import java.nio.channels.ScatteringByteChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class SlicedChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer { public class SlicedChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer {

View File

@ -32,9 +32,6 @@ import java.nio.channels.ScatteringByteChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class TruncatedChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer { public class TruncatedChannelBuffer extends AbstractChannelBuffer implements WrappedChannelBuffer {

View File

@ -21,9 +21,6 @@ package org.jboss.netty.buffer;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public interface WrappedChannelBuffer extends ChannelBuffer { public interface WrappedChannelBuffer extends ChannelBuffer {
/** /**

View File

@ -26,8 +26,6 @@ import org.jboss.netty.util.internal.ConcurrentHashMap;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
*/ */
public abstract class AbstractChannel implements Channel { public abstract class AbstractChannel implements Channel {

View File

@ -22,8 +22,6 @@ import static org.jboss.netty.channel.Channels.*;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public abstract class AbstractChannelSink implements ChannelSink { public abstract class AbstractChannelSink implements ChannelSink {

View File

@ -32,9 +32,6 @@ import java.net.SocketAddress;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public abstract class AbstractServerChannel extends AbstractChannel implements ServerChannel { public abstract class AbstractServerChannel extends AbstractChannel implements ServerChannel {

View File

@ -30,9 +30,6 @@ import java.util.List;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class AdaptiveReceiveBufferSizePredictor implements public class AdaptiveReceiveBufferSizePredictor implements
ReceiveBufferSizePredictor { ReceiveBufferSizePredictor {

View File

@ -22,8 +22,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class AdaptiveReceiveBufferSizePredictorFactory implements public class AdaptiveReceiveBufferSizePredictorFactory implements
ReceiveBufferSizePredictorFactory { ReceiveBufferSizePredictorFactory {

View File

@ -103,8 +103,6 @@ import org.jboss.netty.channel.socket.nio.NioSocketChannelConfig;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
* @apiviz.composedOf org.jboss.netty.channel.ChannelConfig * @apiviz.composedOf org.jboss.netty.channel.ChannelConfig
* @apiviz.composedOf org.jboss.netty.channel.ChannelPipeline * @apiviz.composedOf org.jboss.netty.channel.ChannelPipeline

View File

@ -63,8 +63,6 @@ import org.jboss.netty.channel.socket.nio.NioSocketChannelConfig;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.has org.jboss.netty.channel.ChannelPipelineFactory * @apiviz.has org.jboss.netty.channel.ChannelPipelineFactory
* @apiviz.composedOf org.jboss.netty.channel.ReceiveBufferSizePredictor * @apiviz.composedOf org.jboss.netty.channel.ReceiveBufferSizePredictor
* *

View File

@ -71,8 +71,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$ * @apiviz.exclude ^org\.jboss\.netty\.handler\..*$
*/ */
public interface ChannelDownstreamHandler extends ChannelHandler { public interface ChannelDownstreamHandler extends ChannelHandler {

View File

@ -181,8 +181,6 @@ import org.jboss.netty.channel.socket.ServerSocketChannel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
* @apiviz.composedOf org.jboss.netty.channel.ChannelFuture * @apiviz.composedOf org.jboss.netty.channel.ChannelFuture
*/ */

View File

@ -21,8 +21,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.hidden * @apiviz.hidden
*/ */
public class ChannelException extends RuntimeException { public class ChannelException extends RuntimeException {

View File

@ -50,8 +50,6 @@ import org.jboss.netty.util.ExternalResourceReleasable;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
* @apiviz.has org.jboss.netty.channel.Channel oneway - - creates * @apiviz.has org.jboss.netty.channel.Channel oneway - - creates
* *

View File

@ -167,8 +167,6 @@ import org.jboss.netty.handler.execution.ExecutionHandler;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
* @apiviz.owns org.jboss.netty.channel.ChannelFutureListener - - notifies * @apiviz.owns org.jboss.netty.channel.ChannelFutureListener - - notifies
*/ */

View File

@ -32,8 +32,6 @@ import java.util.EventListener;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public interface ChannelFutureListener extends EventListener { public interface ChannelFutureListener extends EventListener {

View File

@ -38,8 +38,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev: 2080 $, $Date: 2010-01-26 18:04:19 +0900 (Tue, 26 Jan 2010) $
*/ */
public interface ChannelFutureProgressListener extends ChannelFutureListener { public interface ChannelFutureProgressListener extends ChannelFutureListener {

View File

@ -206,8 +206,6 @@ import org.jboss.netty.channel.group.ChannelGroup;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$ * @apiviz.exclude ^org\.jboss\.netty\.handler\..*$
*/ */
@ -227,7 +225,6 @@ public interface ChannelHandler {
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
@Inherited @Inherited
@Documented @Documented

View File

@ -120,8 +120,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.owns org.jboss.netty.channel.ChannelHandler * @apiviz.owns org.jboss.netty.channel.ChannelHandler
*/ */
public interface ChannelHandlerContext { public interface ChannelHandlerContext {

View File

@ -23,8 +23,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.hidden * @apiviz.hidden
*/ */
public class ChannelHandlerLifeCycleException extends RuntimeException { public class ChannelHandlerLifeCycleException extends RuntimeException {

View File

@ -31,7 +31,6 @@ import org.jboss.netty.util.internal.ConcurrentIdentityWeakKeyHashMap;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
* *
* @apiviz.stereotype utility * @apiviz.stereotype utility
*/ */

View File

@ -204,8 +204,6 @@ import org.jboss.netty.handler.ssl.SslHandler;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.landmark * @apiviz.landmark
* @apiviz.composedOf org.jboss.netty.channel.ChannelHandlerContext * @apiviz.composedOf org.jboss.netty.channel.ChannelHandlerContext
* @apiviz.owns org.jboss.netty.channel.ChannelHandler * @apiviz.owns org.jboss.netty.channel.ChannelHandler

View File

@ -23,8 +23,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.hidden * @apiviz.hidden
*/ */
public class ChannelPipelineException extends ChannelException { public class ChannelPipelineException extends ChannelException {

View File

@ -35,8 +35,6 @@ import org.jboss.netty.bootstrap.ConnectionlessBootstrap;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.has org.jboss.netty.channel.ChannelPipeline oneway - - creates * @apiviz.has org.jboss.netty.channel.ChannelPipeline oneway - - creates
*/ */
public interface ChannelPipelineFactory { public interface ChannelPipelineFactory {

View File

@ -26,8 +26,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.uses org.jboss.netty.channel.ChannelPipeline - - sends events upstream * @apiviz.uses org.jboss.netty.channel.ChannelPipeline - - sends events upstream
*/ */
public interface ChannelSink { public interface ChannelSink {

View File

@ -76,8 +76,6 @@ import java.net.SocketAddress;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public enum ChannelState { public enum ChannelState {
/** /**

View File

@ -27,8 +27,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.has org.jboss.netty.channel.ChannelState * @apiviz.has org.jboss.netty.channel.ChannelState
*/ */
public interface ChannelStateEvent extends ChannelEvent { public interface ChannelStateEvent extends ChannelEvent {

View File

@ -87,8 +87,6 @@ import org.jboss.netty.handler.execution.ExecutionHandler;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$ * @apiviz.exclude ^org\.jboss\.netty\.handler\..*$
*/ */
public interface ChannelUpstreamHandler extends ChannelHandler { public interface ChannelUpstreamHandler extends ChannelHandler {

View File

@ -50,8 +50,6 @@ import org.jboss.netty.util.internal.ConversionUtil;
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @apiviz.landmark * @apiviz.landmark
*
* @version $Rev$, $Date$
*/ */
public class Channels { public class Channels {

View File

@ -23,8 +23,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public interface ChildChannelStateEvent extends ChannelEvent { public interface ChildChannelStateEvent extends ChannelEvent {

View File

@ -26,8 +26,6 @@ import org.jboss.netty.logging.InternalLoggerFactory;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public abstract class CompleteChannelFuture implements ChannelFuture { public abstract class CompleteChannelFuture implements ChannelFuture {

View File

@ -28,9 +28,6 @@ import org.jboss.netty.util.internal.ConversionUtil;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DefaultChannelConfig implements ChannelConfig { public class DefaultChannelConfig implements ChannelConfig {

View File

@ -34,8 +34,6 @@ import org.jboss.netty.util.internal.DeadLockProofWorker;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class DefaultChannelFuture implements ChannelFuture { public class DefaultChannelFuture implements ChannelFuture {

View File

@ -32,9 +32,6 @@ import org.jboss.netty.logging.InternalLoggerFactory;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DefaultChannelPipeline implements ChannelPipeline { public class DefaultChannelPipeline implements ChannelPipeline {

View File

@ -22,9 +22,6 @@ import static org.jboss.netty.channel.Channels.*;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DefaultChildChannelStateEvent implements ChildChannelStateEvent { public class DefaultChildChannelStateEvent implements ChildChannelStateEvent {

View File

@ -24,9 +24,6 @@ import org.jboss.netty.util.internal.StackTraceSimplifier;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DefaultExceptionEvent implements ExceptionEvent { public class DefaultExceptionEvent implements ExceptionEvent {

View File

@ -27,8 +27,6 @@ import org.jboss.netty.channel.socket.ServerSocketChannelConfig;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class DefaultServerChannelConfig implements ChannelConfig { public class DefaultServerChannelConfig implements ChannelConfig {

View File

@ -22,8 +22,6 @@ import static org.jboss.netty.channel.Channels.*;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class DefaultWriteCompletionEvent implements WriteCompletionEvent { public class DefaultWriteCompletionEvent implements WriteCompletionEvent {

View File

@ -20,9 +20,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DownstreamChannelStateEvent implements ChannelStateEvent { public class DownstreamChannelStateEvent implements ChannelStateEvent {

View File

@ -24,9 +24,6 @@ import org.jboss.netty.util.internal.StringUtil;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class DownstreamMessageEvent implements MessageEvent { public class DownstreamMessageEvent implements MessageEvent {

View File

@ -24,8 +24,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public interface ExceptionEvent extends ChannelEvent { public interface ExceptionEvent extends ChannelEvent {

View File

@ -22,8 +22,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class FailedChannelFuture extends CompleteChannelFuture { public class FailedChannelFuture extends CompleteChannelFuture {

View File

@ -56,7 +56,6 @@ import org.jboss.netty.util.ExternalResourceReleasable;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev: 2080 $, $Date: 2010-01-26 18:04:19 +0900 (Tue, 26 Jan 2010) $
*/ */
public interface FileRegion extends ExternalResourceReleasable { public interface FileRegion extends ExternalResourceReleasable {
@ -90,4 +89,4 @@ public interface FileRegion extends ExternalResourceReleasable {
* byte of the region transferred. * byte of the region transferred.
*/ */
long transferTo(WritableByteChannel target, long position) throws IOException; long transferTo(WritableByteChannel target, long position) throws IOException;
} }

View File

@ -22,8 +22,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class FixedReceiveBufferSizePredictor implements public class FixedReceiveBufferSizePredictor implements
ReceiveBufferSizePredictor { ReceiveBufferSizePredictor {

View File

@ -22,8 +22,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class FixedReceiveBufferSizePredictorFactory implements public class FixedReceiveBufferSizePredictorFactory implements
ReceiveBufferSizePredictorFactory { ReceiveBufferSizePredictorFactory {

View File

@ -30,7 +30,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public interface LifeCycleAwareChannelHandler extends ChannelHandler { public interface LifeCycleAwareChannelHandler extends ChannelHandler {
void beforeAdd(ChannelHandlerContext ctx) throws Exception; void beforeAdd(ChannelHandlerContext ctx) throws Exception;

View File

@ -27,8 +27,6 @@ import java.net.SocketAddress;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public interface MessageEvent extends ChannelEvent { public interface MessageEvent extends ChannelEvent {

View File

@ -32,9 +32,6 @@ import org.jboss.netty.buffer.ChannelBuffer;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public interface ReceiveBufferSizePredictor { public interface ReceiveBufferSizePredictor {

View File

@ -21,8 +21,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.has org.jboss.netty.channel.ReceiveBufferSizePredictor oneway - - creates * @apiviz.has org.jboss.netty.channel.ReceiveBufferSizePredictor oneway - - creates
*/ */
public interface ReceiveBufferSizePredictorFactory { public interface ReceiveBufferSizePredictorFactory {

View File

@ -24,7 +24,6 @@ import org.jboss.netty.channel.socket.ServerSocketChannel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public interface ServerChannel extends Channel { public interface ServerChannel extends Channel {
// This is a tag interface. // This is a tag interface.

View File

@ -21,8 +21,6 @@ package org.jboss.netty.channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* *
* @version $Rev$, $Date$
*
* @apiviz.has org.jboss.netty.channel.ServerChannel oneway - - creates * @apiviz.has org.jboss.netty.channel.ServerChannel oneway - - creates
*/ */
public interface ServerChannelFactory extends ChannelFactory { public interface ServerChannelFactory extends ChannelFactory {

View File

@ -52,8 +52,6 @@ import java.net.SocketAddress;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class SimpleChannelDownstreamHandler implements ChannelDownstreamHandler { public class SimpleChannelDownstreamHandler implements ChannelDownstreamHandler {

View File

@ -73,8 +73,6 @@ import org.jboss.netty.logging.InternalLoggerFactory;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class SimpleChannelHandler implements ChannelUpstreamHandler, ChannelDownstreamHandler { public class SimpleChannelHandler implements ChannelUpstreamHandler, ChannelDownstreamHandler {

View File

@ -53,8 +53,6 @@ import org.jboss.netty.logging.InternalLoggerFactory;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class SimpleChannelUpstreamHandler implements ChannelUpstreamHandler { public class SimpleChannelUpstreamHandler implements ChannelUpstreamHandler {

View File

@ -33,9 +33,6 @@ import org.jboss.netty.util.internal.ConversionUtil;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class StaticChannelPipeline implements ChannelPipeline { public class StaticChannelPipeline implements ChannelPipeline {

View File

@ -22,8 +22,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class SucceededChannelFuture extends CompleteChannelFuture { public class SucceededChannelFuture extends CompleteChannelFuture {

View File

@ -22,9 +22,6 @@ import static org.jboss.netty.channel.Channels.*;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class UpstreamChannelStateEvent implements ChannelStateEvent { public class UpstreamChannelStateEvent implements ChannelStateEvent {

View File

@ -26,9 +26,6 @@ import org.jboss.netty.util.internal.StringUtil;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*
*/ */
public class UpstreamMessageEvent implements MessageEvent { public class UpstreamMessageEvent implements MessageEvent {

View File

@ -24,8 +24,6 @@ package org.jboss.netty.channel;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public interface WriteCompletionEvent extends ChannelEvent { public interface WriteCompletionEvent extends ChannelEvent {
/** /**

View File

@ -90,7 +90,6 @@ import org.jboss.netty.util.CharsetUtil;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
* *
* @apiviz.landmark * @apiviz.landmark
* @apiviz.has org.jboss.netty.channel.group.ChannelGroupFuture oneway - - returns * @apiviz.has org.jboss.netty.channel.group.ChannelGroupFuture oneway - - returns

View File

@ -110,7 +110,6 @@ import org.jboss.netty.handler.execution.ExecutionHandler;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
* *
* @apiviz.owns org.jboss.netty.channel.group.ChannelGroupFutureListener - - notifies * @apiviz.owns org.jboss.netty.channel.group.ChannelGroupFutureListener - - notifies
*/ */

View File

@ -25,8 +25,6 @@ import java.util.EventListener;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public interface ChannelGroupFutureListener extends EventListener { public interface ChannelGroupFutureListener extends EventListener {

View File

@ -21,7 +21,6 @@ import java.util.NoSuchElementException;
/** /**
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
final class CombinedIterator<E> implements Iterator<E> { final class CombinedIterator<E> implements Iterator<E> {

View File

@ -37,7 +37,6 @@ import org.jboss.netty.util.internal.ConcurrentHashMap;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
* *
* @apiviz.landmark * @apiviz.landmark
*/ */

View File

@ -38,8 +38,6 @@ import org.jboss.netty.util.internal.DeadLockProofWorker;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
*
* @version $Rev$, $Date$
*/ */
public class DefaultChannelGroupFuture implements ChannelGroupFuture { public class DefaultChannelGroupFuture implements ChannelGroupFuture {

View File

@ -39,7 +39,6 @@ import org.jboss.netty.util.internal.ThreadLocalBoolean;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
final class DefaultLocalChannel extends AbstractChannel implements LocalChannel { final class DefaultLocalChannel extends AbstractChannel implements LocalChannel {

View File

@ -24,7 +24,6 @@ import org.jboss.netty.channel.ChannelSink;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
* *
* @apiviz.landmark * @apiviz.landmark
*/ */

View File

@ -30,7 +30,6 @@ import org.jboss.netty.channel.DefaultServerChannelConfig;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
final class DefaultLocalServerChannel extends AbstractServerChannel implements final class DefaultLocalServerChannel extends AbstractServerChannel implements
LocalServerChannel { LocalServerChannel {

View File

@ -24,7 +24,6 @@ import org.jboss.netty.channel.ChannelSink;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
* *
* @apiviz.landmark * @apiviz.landmark
*/ */

View File

@ -31,7 +31,6 @@ import java.net.SocketAddress;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
* *
* @apiviz.landmark * @apiviz.landmark
*/ */

View File

@ -23,7 +23,6 @@ import org.jboss.netty.channel.Channel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public interface LocalChannel extends Channel { public interface LocalChannel extends Channel {
@Override @Override

View File

@ -23,7 +23,6 @@ import org.jboss.netty.util.internal.ConcurrentHashMap;
/** /**
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
final class LocalChannelRegistry { final class LocalChannelRegistry {

View File

@ -23,7 +23,6 @@ import org.jboss.netty.channel.ChannelPipeline;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public interface LocalClientChannelFactory extends ChannelFactory { public interface LocalClientChannelFactory extends ChannelFactory {
@Override @Override

View File

@ -36,7 +36,6 @@ import org.jboss.netty.logging.InternalLoggerFactory;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
final class LocalClientChannelSink extends AbstractChannelSink { final class LocalClientChannelSink extends AbstractChannelSink {

View File

@ -23,7 +23,6 @@ import org.jboss.netty.channel.ServerChannel;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public interface LocalServerChannel extends ServerChannel { public interface LocalServerChannel extends ServerChannel {
@Override @Override

View File

@ -23,7 +23,6 @@ import org.jboss.netty.channel.ServerChannelFactory;
* *
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
public interface LocalServerChannelFactory extends ServerChannelFactory { public interface LocalServerChannelFactory extends ServerChannelFactory {
@Override @Override

View File

@ -31,7 +31,6 @@ import org.jboss.netty.channel.MessageEvent;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a> * @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author Andy Taylor (andy.taylor@jboss.org) * @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a> * @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*/ */
final class LocalServerChannelSink extends AbstractChannelSink { final class LocalServerChannelSink extends AbstractChannelSink {

Some files were not shown because too many files have changed in this diff Show More