Updated APIviz tags

This commit is contained in:
Trustin Lee 2010-04-16 04:12:43 +00:00
parent 4e69cfe281
commit 48696d909f
15 changed files with 30 additions and 7 deletions

View File

@ -25,6 +25,8 @@ import org.jboss.netty.channel.ChannelSink;
* @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class DefaultLocalClientChannelFactory implements LocalClientChannelFactory {

View File

@ -25,6 +25,8 @@ import org.jboss.netty.channel.ChannelSink;
* @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public class DefaultLocalServerChannelFactory implements LocalServerChannelFactory {

View File

@ -32,6 +32,8 @@ import java.net.SocketAddress;
* @author Andy Taylor (andy.taylor@jboss.org)
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public final class LocalAddress extends SocketAddress implements Comparable<LocalAddress> {

View File

@ -23,13 +23,14 @@
* @apiviz.exclude ^java
* @apiviz.exclude ^org\.jboss\.netty\.channel\.[^\.]+\.
* @apiviz.exclude ^org\.jboss\.netty\.(bootstrap|handler|util)\.
* @apiviz.exclude \.(Abstract|Default).*$
* @apiviz.exclude \.(Abstract|Default|Static).*$
* @apiviz.exclude \.(Downstream|Upstream).*Event$
* @apiviz.exclude \.[A-Za-z]+ChannelFuture$
* @apiviz.exclude \.ChannelPipelineFactory$
* @apiviz.exclude \.ChannelHandlerContext$
* @apiviz.exclude \.ChannelSink$
* @apiviz.exclude \.ChannelLocal$
* @apiviz.exclude \.[^\.]+ReceiveBufferSizePredictor$
* @apiviz.exclude \.[^\.]+ReceiveBufferSizePredictor(Factory)?$
* @apiviz.exclude \.FileRegion$
*/
package org.jboss.netty.channel;

View File

@ -35,6 +35,7 @@ import org.jboss.netty.buffer.HeapChannelBufferFactory;
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.uses org.jboss.netty.handler.codec.base64.Base64Dialect
*/
public class Base64 {

View File

@ -48,6 +48,7 @@ import org.jboss.netty.util.CharsetUtil;
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.uses org.jboss.netty.handler.codec.base64.Base64
*/
@Sharable

View File

@ -42,6 +42,7 @@ import org.jboss.netty.handler.codec.oneone.OneToOneEncoder;
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.uses org.jboss.netty.handler.codec.base64.Base64
*/
@Sharable

View File

@ -30,6 +30,9 @@ import org.jboss.netty.util.internal.jzlib.ZStream;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.has org.jboss.netty.handler.codec.compression.ZlibWrapper
*/
public class ZlibDecoder extends OneToOneDecoder {

View File

@ -38,6 +38,9 @@ import org.jboss.netty.util.internal.jzlib.ZStream;
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.has org.jboss.netty.handler.codec.compression.ZlibWrapper
*/
public class ZlibEncoder extends OneToOneEncoder implements LifeCycleAwareChannelHandler {

View File

@ -22,6 +22,7 @@
* @apiviz.exclude \.codec\.(?!compression)[a-z0-9]+\.
* @apiviz.exclude ^java\.lang\.
* @apiviz.exclude \.channel\.
* @apiviz.exclude Exception$
*/
package org.jboss.netty.handler.codec.compression;
// TODO Implement bzip2 and lzma handlers

View File

@ -21,7 +21,7 @@
*
* @apiviz.exclude OneToOne(Encoder|Decoder)$
* @apiviz.exclude \.(Simple)?Channel[A-Za-z]*Handler$
* @apiviz.exclude \.codec\.serialization\.
* @apiviz.exclude \.codec\.[a-eg-z][a-z0-9]*\.
* @apiviz.exclude \.ssl\.
*/
package org.jboss.netty.handler.codec.frame;

View File

@ -24,8 +24,6 @@ import java.util.Set;
* @author <a href="http://gleamynode.net/">Trustin Lee</a>
* @author Andy Taylor (andy.taylor@jboss.org)
* @version $Rev$, $Date$
*
* @apiviz.landmark
*/
public interface Cookie extends Comparable<Cookie> {

View File

@ -39,6 +39,9 @@ import org.jboss.netty.util.internal.LinkedTransferQueue;
* @version $Rev$, $Date$
*
* @see HttpServerCodec
*
* @apiviz.has org.jboss.netty.handler.codec.http.HttpResponseDecoder
* @apiviz.has org.jboss.netty.handler.codec.http.HttpRequestEncoder
*/
public class HttpClientCodec implements ChannelUpstreamHandler,
ChannelDownstreamHandler {

View File

@ -29,6 +29,9 @@ import org.jboss.netty.channel.ChannelUpstreamHandler;
* @version $Rev$, $Date$
*
* @see HttpClientCodec
*
* @apiviz.has org.jboss.netty.handler.codec.http.HttpRequestDecoder
* @apiviz.has org.jboss.netty.handler.codec.http.HttpResponseEncoder
*/
public class HttpServerCodec implements ChannelUpstreamHandler,
ChannelDownstreamHandler {

View File

@ -19,9 +19,11 @@
*
* @apiviz.exclude ^java\.lang\.
* @apiviz.exclude OneToOne(Encoder|Decoder)$
* @apiviz.exclude HttpHeaders
* @apiviz.exclude (QueryString|Cookie)(Encoder|Decoder)$
* @apiviz.exclude \.HttpHeaders\.
* @apiviz.exclude \.codec\.replay\.
* @apiviz.exclude \.(Simple)?Channel[A-Za-z]*Handler$
* @apiviz.exclude \.Rtsp
* @apiviz.exclude \.Default
* @apiviz.exclude \.Http(Client|Server)Codec$
*/
package org.jboss.netty.handler.codec.http;