Cosmetic changes related with apiviz

This commit is contained in:
Trustin Lee 2008-09-05 10:58:37 +00:00
parent 5e767254ea
commit b8c1472003
20 changed files with 26 additions and 9 deletions

View File

@ -132,8 +132,6 @@ import java.net.SocketAddress;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public interface ChannelDownstreamHandler extends ChannelHandler {

View File

@ -33,8 +33,6 @@ import java.util.EventListener;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public interface ChannelFutureListener extends EventListener {

View File

@ -60,6 +60,8 @@ package org.jboss.netty.channel;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public interface ChannelHandler {
// This is a tag interface.

View File

@ -195,8 +195,6 @@ import org.jboss.netty.handler.execution.OrderedMemoryAwareThreadPoolExecutor;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public interface ChannelUpstreamHandler extends ChannelHandler {

View File

@ -57,8 +57,6 @@ import java.util.Map;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class Channels {

View File

@ -32,6 +32,8 @@
* @apiviz.exclude ^org\.jboss\.netty\.(bootstrap|handler)\.
* @apiviz.exclude \.(Abstract|Default).*$
* @apiviz.exclude \.[A-Za-z]+ChannelFuture$
* @apiviz.exclude \.ChannelState$
* @apiviz.exclude \.ChannelPipelineFactory$
* @apiviz.exclude \.ChannelHandlerContext$
* @apiviz.exclude \.ChannelSink$
*/
package org.jboss.netty.channel;

View File

@ -33,6 +33,8 @@ import org.jboss.netty.channel.ChannelConfig;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public interface ServerSocketChannelConfig extends ChannelConfig {

View File

@ -34,6 +34,7 @@ import org.jboss.netty.channel.ChannelConfig;
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public interface SocketChannelConfig extends ChannelConfig {

View File

@ -91,6 +91,7 @@ import org.jboss.netty.channel.socket.SocketChannel;
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class NioClientSocketChannelFactory implements ClientSocketChannelFactory {

View File

@ -94,6 +94,7 @@ import org.jboss.netty.channel.socket.ServerSocketChannelFactory;
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class NioServerSocketChannelFactory implements ServerSocketChannelFactory {

View File

@ -83,6 +83,7 @@ import org.jboss.netty.channel.socket.SocketChannel;
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class OioClientSocketChannelFactory implements ClientSocketChannelFactory {

View File

@ -95,6 +95,7 @@ import org.jboss.netty.channel.socket.ServerSocketChannelFactory;
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class OioServerSocketChannelFactory implements ServerSocketChannelFactory {

View File

@ -23,5 +23,7 @@
/**
* Abstract TCP and UDP socket interfaces which extend the core channel API.
*
* @apiviz.exclude \.(Abstract|Default).*$
*/
package org.jboss.netty.channel.socket;

View File

@ -67,6 +67,7 @@ import org.jboss.netty.channel.ChannelHandlerContext;
*
* @version $Rev:231 $, $Date:2008-06-12 16:44:50 +0900 (, 12 6월 2008) $
*
* @apiviz.landmark
* @apiviz.uses org.jboss.netty.handler.codec.frame.Delimiters - - optional yet useful
*/
public class DelimiterBasedFrameDecoder extends FrameDecoder {

View File

@ -142,6 +142,7 @@ import org.jboss.netty.channel.SimpleChannelHandler;
*
* @version $Rev:231 $, $Date:2008-06-12 16:44:50 +0900 (, 12 6월 2008) $
*
* @apiviz.landmark
*/
@ChannelPipelineCoverage("one")
public abstract class FrameDecoder extends SimpleChannelHandler {

View File

@ -180,6 +180,8 @@ import org.jboss.netty.handler.codec.frame.FrameDecoder;
*
* @param <T>
* the state type; use {@link VoidEnum} if state management is unused
*
* @apiviz.landmark
*/
@ChannelPipelineCoverage("one")
public abstract class ReplayingDecoder<T extends Enum<T>> extends SimpleChannelHandler {

View File

@ -49,6 +49,8 @@ import org.jboss.netty.handler.codec.frame.FrameDecoder;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class ObjectDecoder extends FrameDecoder {

View File

@ -53,6 +53,8 @@ import org.jboss.netty.channel.MessageEvent;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev:231 $, $Date:2008-06-12 16:44:50 +0900 (, 12 6월 2008) $
*
* @apiviz.landmark
*/
@ChannelPipelineCoverage("all")
public class ObjectEncoder implements ChannelDownstreamHandler {

View File

@ -66,6 +66,8 @@ import org.jboss.netty.handler.codec.frame.FrameDecoder;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev:231 $, $Date:2008-06-12 16:44:50 +0900 (, 12 6월 2008) $
*
* @apiviz.landmark
*/
@ChannelPipelineCoverage("all")
public class StringDecoder implements ChannelUpstreamHandler {

View File

@ -64,6 +64,8 @@ import org.jboss.netty.handler.codec.frame.Delimiters;
* @author Trustin Lee (tlee@redhat.com)
*
* @version $Rev:231 $, $Date:2008-06-12 16:44:50 +0900 (, 12 6월 2008) $
*
* @apiviz.landmark
*/
@ChannelPipelineCoverage("all")
public class StringEncoder implements ChannelDownstreamHandler {