More cross-referencing

This commit is contained in:
Trustin Lee 2008-09-02 13:27:40 +00:00
parent f9778a8dad
commit eef1c1d84d
5 changed files with 14 additions and 6 deletions

View File

@ -25,7 +25,7 @@ package org.jboss.netty.channel;
import java.net.SocketAddress;
/**
* Represents the current or requested state of a {@link Channel}.
* Represents the current or future state of a {@link Channel}.
* <p>
* The state of a {@link Channel} is interpreted differently depending on the
* {@linkplain ChannelStateEvent#getValue() value} of a {@link ChannelStateEvent}

View File

@ -27,7 +27,9 @@ package org.jboss.netty.channel;
* A {@link ChannelEvent} which represents the change of the {@link Channel}
* state. It can mean the notification of a change or the request for a
* change, depending on whether it is a upstream event or a downstream event
* respectively.
* respectively. Please refer to the {@link ChannelEvent} documentation to
* find out what a upstream event and a downstream event are and what
* fundamental differences they have.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)

View File

@ -24,7 +24,9 @@ package org.jboss.netty.channel;
/**
* A {@link ChannelEvent} which represents the notification of the state of
* a child {@link Channel}. This event is allowed to go upstream only.
* a child {@link Channel}. This event is for going upstream only. Please
* refer to the {@link ChannelEvent} documentation to find out what a upstream
* event and a downstream event are and what fundamental differences they have.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)

View File

@ -24,8 +24,10 @@ package org.jboss.netty.channel;
/**
* A {@link ChannelEvent} which represents the notification of an exception
* raised by a {@link ChannelHandler} or an I/O thread. This event is allowed
* to go upstream only.
* raised by a {@link ChannelHandler} or an I/O thread. This event is for
* going upstream only. Please refer to the {@link ChannelEvent} documentation
* to find out what a upstream event and a downstream event are and what
* fundamental differences they have.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)

View File

@ -28,7 +28,9 @@ import java.net.SocketAddress;
* A {@link ChannelEvent} which represents the transmission or reception of a
* message. It can mean the notification of a received message or the request
* for writing a message, depending on whether it is a upstream event or a
* downstream event respectively.
* downstream event respectively. Please refer to the {@link ChannelEvent}
* documentation to find out what a upstream event and a downstream event are
* and what fundamental differences they have.
*
* @author The Netty Project (netty-dev@lists.jboss.org)
* @author Trustin Lee (tlee@redhat.com)