Fewer JBoss reference

This commit is contained in:
Trustin Lee 2011-12-09 13:59:41 +09:00
parent 7f25d9d81a
commit a254bf41e7
10 changed files with 10 additions and 18 deletions

View File

@ -19,6 +19,6 @@
* typical client side and server side channel initialization.
*
* @apiviz.landmark
* @apiviz.exclude ^org\.jboss\.netty\.util\.
* @apiviz.exclude ^io\.netty\.util\.
*/
package io.netty.bootstrap;

View File

@ -103,7 +103,7 @@ import io.netty.channel.socket.nio.NioSocketChannelConfig;
* @apiviz.composedOf io.netty.channel.ChannelConfig
* @apiviz.composedOf io.netty.channel.ChannelPipeline
*
* @apiviz.exclude ^org\.jboss\.netty\.channel\.([a-z]+\.)+[^\.]+Channel$
* @apiviz.exclude ^io\.netty\.channel\.([a-z]+\.)+[^\.]+Channel$
*/
public interface Channel extends Comparable<Channel> {

View File

@ -67,7 +67,7 @@ package io.netty.channel;
* may be invoked by more than one thread simultaneously. If the handler
* accesses a shared resource or stores stateful information, you might need
* proper synchronization in the handler implementation.
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$
* @apiviz.exclude ^io\.netty\.handler\..*$
*/
public interface ChannelDownstreamHandler extends ChannelHandler {

View File

@ -49,7 +49,7 @@ import io.netty.util.ExternalResourceReleasable;
* @apiviz.landmark
* @apiviz.has io.netty.channel.Channel oneway - - creates
*
* @apiviz.exclude ^org\.jboss\.netty\.channel\.([a-z]+\.)+.*ChannelFactory$
* @apiviz.exclude ^io\.netty\.channel\.([a-z]+\.)+.*ChannelFactory$
*/
public interface ChannelFactory extends ExternalResourceReleasable {

View File

@ -203,7 +203,7 @@ import io.netty.channel.group.ChannelGroup;
* out what a upstream event and a downstream event are, what fundamental
* differences they have, and how they flow in a pipeline.
* @apiviz.landmark
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$
* @apiviz.exclude ^io\.netty\.handler\..*$
*/
public interface ChannelHandler {

View File

@ -83,7 +83,7 @@ import io.netty.handler.execution.ExecutionHandler;
* this behavior changes depending on what {@link Executor} was employed to
* dispatch the events. Please refer to {@link ExecutionHandler} for more
* information.
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$
* @apiviz.exclude ^io\.netty\.handler\..*$
*/
public interface ChannelUpstreamHandler extends ChannelHandler {

View File

@ -21,8 +21,8 @@
*
* @apiviz.landmark
* @apiviz.exclude ^java
* @apiviz.exclude ^org\.jboss\.netty\.channel\.[^\.]+\.
* @apiviz.exclude ^org\.jboss\.netty\.(bootstrap|handler|util)\.
* @apiviz.exclude ^io\.netty\.channel\.[^\.]+\.
* @apiviz.exclude ^io\.netty\.(bootstrap|handler|util)\.
* @apiviz.exclude \.(Abstract|Default|Static).*$
* @apiviz.exclude \.(Downstream|Upstream).*Event$
* @apiviz.exclude \.[A-Za-z]+ChannelFuture$

View File

@ -46,7 +46,7 @@ import io.netty.channel.MessageEvent;
import io.netty.channel.UpstreamMessageEvent;
/**
* A {@link ChannelSink} implementation of the RXTX support for JBoss Netty.
* A {@link ChannelSink} implementation of the RXTX support for Netty.
*/
public class RXTXChannelSink extends AbstractChannelSink {

View File

@ -84,14 +84,6 @@ public class HttpRequestHandler extends SimpleChannelUpstreamHandler {
DiskAttribute.baseDirectory = null; // system temp directory
}
/*
* (non-Javadoc)
*
* @see
* io.netty.channel.SimpleChannelUpstreamHandler#channelClosed(org
* .jboss.netty.channel.ChannelHandlerContext,
* io.netty.channel.ChannelStateEvent)
*/
@Override
public void channelClosed(ChannelHandlerContext ctx, ChannelStateEvent e)
throws Exception {

View File

@ -34,7 +34,7 @@ public class StackTraceSimplifier {
private static final boolean SIMPLIFY_STACK_TRACE = !DebugUtil.isDebugEnabled();
private static final Pattern EXCLUDED_STACK_TRACE =
Pattern.compile(
"^org\\.jboss\\.netty\\." +
"^io\\.netty\\." +
"(util\\.internal\\.DeadLockProofWorker" +
"|channel\\.(SimpleChannel(Upstream|Downstream)?Handler|(Default|Static)ChannelPipeline.*))(\\$.*)?$");