Fix javadocs

This commit is contained in:
Norman Maurer 2013-03-01 21:42:08 +01:00
parent 42dad6d9d4
commit 03525f4b64

View File

@ -24,8 +24,8 @@ interface ChannelInboundInvoker {
/**
* A {@link Channel} was registered to its {@link EventLoop}.
*
* This will result in having the {@link ChannelInboundHandler#channelRegistered(ChannelHandlerContext)} method
* called of the next {@link ChannelInboundHandler} contained in the {@link ChannelPipeline} of the
* This will result in having the {@link ChannelStateHandler#channelRegistered(ChannelHandlerContext)} method
* called of the next {@link ChannelStateHandler} contained in the {@link ChannelPipeline} of the
* {@link Channel}.
*/
ChannelInboundInvoker fireChannelRegistered();
@ -33,8 +33,8 @@ interface ChannelInboundInvoker {
/**
* A {@link Channel} was unregistered from its {@link EventLoop}.
*
* This will result in having the {@link ChannelInboundHandler#channelUnregistered(ChannelHandlerContext)} method
* called of the next {@link ChannelInboundHandler} contained in the {@link ChannelPipeline} of the
* This will result in having the {@link ChannelStateHandler#channelUnregistered(ChannelHandlerContext)} method
* called of the next {@link ChannelStateHandler} contained in the {@link ChannelPipeline} of the
* {@link Channel}.
*/
ChannelInboundInvoker fireChannelUnregistered();
@ -42,8 +42,8 @@ interface ChannelInboundInvoker {
/**
* A {@link Channel} is active now, which means it is connected.
*
* This will result in having the {@link ChannelInboundHandler#channelActive(ChannelHandlerContext)} method
* called of the next {@link ChannelInboundHandler} contained in the {@link ChannelPipeline} of the
* This will result in having the {@link ChannelStateHandler#channelActive(ChannelHandlerContext)} method
* called of the next {@link ChannelStateHandler} contained in the {@link ChannelPipeline} of the
* {@link Channel}.
*/
ChannelInboundInvoker fireChannelActive();
@ -51,8 +51,8 @@ interface ChannelInboundInvoker {
/**
* A {@link Channel} is inactive now, which means it is closed.
*
* This will result in having the {@link ChannelInboundHandler#channelInactive(ChannelHandlerContext)} method
* called of the next {@link ChannelInboundHandler} contained in the {@link ChannelPipeline} of the
* This will result in having the {@link ChannelStateHandler#channelInactive(ChannelHandlerContext)} method
* called of the next {@link ChannelStateHandler} contained in the {@link ChannelPipeline} of the
* {@link Channel}.
*/
ChannelInboundInvoker fireChannelInactive();
@ -60,8 +60,8 @@ interface ChannelInboundInvoker {
/**
* A {@link Channel} received an {@link Throwable} in one of its inbound operations.
*
* This will result in having the {@link ChannelInboundHandler#exceptionCaught(ChannelHandlerContext, Throwable)}
* method called of the next {@link ChannelInboundHandler} contained in the {@link ChannelPipeline} of the
* This will result in having the {@link ChannelStateHandler#exceptionCaught(ChannelHandlerContext, Throwable)}
* method called of the next {@link ChannelStateHandler} contained in the {@link ChannelPipeline} of the
* {@link Channel}.
*/
ChannelInboundInvoker fireExceptionCaught(Throwable cause);
@ -69,8 +69,8 @@ interface ChannelInboundInvoker {
/**
* A {@link Channel} received an user defined event.
*
* This will result in having the {@link ChannelInboundHandler#userEventTriggered(ChannelHandlerContext, Object)}
* method called of the next {@link ChannelInboundHandler} contained in the {@link ChannelPipeline} of the
* This will result in having the {@link ChannelStateHandler#userEventTriggered(ChannelHandlerContext, Object)}
* method called of the next {@link ChannelStateHandler} contained in the {@link ChannelPipeline} of the
* {@link Channel}.
*/
ChannelInboundInvoker fireUserEventTriggered(Object event);
@ -78,8 +78,8 @@ interface ChannelInboundInvoker {
/**
* A {@link Channel} received bytes which are now ready to read from its inbound buffer.
*
* This will result in having the {@link ChannelInboundHandler#inboundBufferUpdated(ChannelHandlerContext)}
* method called of the next {@link ChannelInboundHandler} contained in the {@link ChannelPipeline} of the
* This will result in having the {@link ChannelStateHandler#inboundBufferUpdated(ChannelHandlerContext)}
* method called of the next {@link ChannelStateHandler} contained in the {@link ChannelPipeline} of the
* {@link Channel}.
*/
ChannelInboundInvoker fireInboundBufferUpdated();