Wrong pointer - those tables were moved to ChannelEvent

This commit is contained in:
Trustin Lee 2009-10-30 08:02:53 +00:00
parent a3c2efaff1
commit f7bf2932d9
2 changed files with 2 additions and 3 deletions

View File

@ -28,7 +28,7 @@ import org.jboss.netty.logging.InternalLoggerFactory;
* or downstream event into more meaningful sub-type event and calls an * or downstream event into more meaningful sub-type event and calls an
* appropriate handler method with the down-cast event. For an upstream * appropriate handler method with the down-cast event. For an upstream
* event, the names of the methods are identical to the upstream event names, * event, the names of the methods are identical to the upstream event names,
* as introduced in the {@link ChannelUpstreamHandler} documentation. For a * as introduced in the {@link ChannelEvent} documentation. For a
* downstream event, the names of the methods starts with the name of the * downstream event, the names of the methods starts with the name of the
* operation and ends with {@code "Requested"} * operation and ends with {@code "Requested"}
* (e.g. {@link #writeRequested(ChannelHandlerContext, MessageEvent) writeRequested}.) * (e.g. {@link #writeRequested(ChannelHandlerContext, MessageEvent) writeRequested}.)

View File

@ -25,8 +25,7 @@ import org.jboss.netty.logging.InternalLoggerFactory;
* for each event type. This handler down-casts the received upstream event * for each event type. This handler down-casts the received upstream event
* into more meaningful sub-type event and calls an appropriate handler method * into more meaningful sub-type event and calls an appropriate handler method
* with the down-cast event. The names of the methods are identical to the * with the down-cast event. The names of the methods are identical to the
* upstream event names, as introduced in the {@link ChannelUpstreamHandler} * upstream event names, as introduced in the {@link ChannelEvent} documentation.
* documentation.
* <p> * <p>
* Please use {@link SimpleChannelHandler} if you need to implement both * Please use {@link SimpleChannelHandler} if you need to implement both
* {@link ChannelUpstreamHandler} and {@link ChannelDownstreamHandler}. * {@link ChannelUpstreamHandler} and {@link ChannelDownstreamHandler}.