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. * typical client side and server side channel initialization.
* *
* @apiviz.landmark * @apiviz.landmark
* @apiviz.exclude ^org\.jboss\.netty\.util\. * @apiviz.exclude ^io\.netty\.util\.
*/ */
package io.netty.bootstrap; 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.ChannelConfig
* @apiviz.composedOf io.netty.channel.ChannelPipeline * @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> { 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 * may be invoked by more than one thread simultaneously. If the handler
* accesses a shared resource or stores stateful information, you might need * accesses a shared resource or stores stateful information, you might need
* proper synchronization in the handler implementation. * proper synchronization in the handler implementation.
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$ * @apiviz.exclude ^io\.netty\.handler\..*$
*/ */
public interface ChannelDownstreamHandler extends ChannelHandler { public interface ChannelDownstreamHandler extends ChannelHandler {

View File

@ -49,7 +49,7 @@ import io.netty.util.ExternalResourceReleasable;
* @apiviz.landmark * @apiviz.landmark
* @apiviz.has io.netty.channel.Channel oneway - - creates * @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 { 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 * out what a upstream event and a downstream event are, what fundamental
* differences they have, and how they flow in a pipeline. * differences they have, and how they flow in a pipeline.
* @apiviz.landmark * @apiviz.landmark
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$ * @apiviz.exclude ^io\.netty\.handler\..*$
*/ */
public interface ChannelHandler { 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 * this behavior changes depending on what {@link Executor} was employed to
* dispatch the events. Please refer to {@link ExecutionHandler} for more * dispatch the events. Please refer to {@link ExecutionHandler} for more
* information. * information.
* @apiviz.exclude ^org\.jboss\.netty\.handler\..*$ * @apiviz.exclude ^io\.netty\.handler\..*$
*/ */
public interface ChannelUpstreamHandler extends ChannelHandler { public interface ChannelUpstreamHandler extends ChannelHandler {

View File

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

View File

@ -46,7 +46,7 @@ import io.netty.channel.MessageEvent;
import io.netty.channel.UpstreamMessageEvent; 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 { public class RXTXChannelSink extends AbstractChannelSink {

View File

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

View File

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