Emphasis on new expressions

This commit is contained in:
Trustin Lee 2008-09-02 13:50:54 +00:00
parent cb5a375282
commit 92ec297756

View File

@ -33,11 +33,11 @@ package org.jboss.netty.channel;
* <h3>Upstream events and downstream events, and their interpretation</h3> * <h3>Upstream events and downstream events, and their interpretation</h3>
* <p> * <p>
* If an event flows from the first handler to the last handler in a * If an event flows from the first handler to the last handler in a
* {@link ChannelPipeline}, we call it a upstream event and say "an event goes * {@link ChannelPipeline}, we call it a upstream event and say <strong>"an
* upstream". If an event flows from the last handler to the first handler in * event goes upstream."</strong> If an event flows from the last handler to
* a {@link ChannelPipeline}, we call it a downstream event and say "an event * the first handler in a {@link ChannelPipeline}, we call it a downstream
* goes downstream". (Please refer to the diagram in {@link ChannelPipeline} * event and say <strong>"an event goes downstream."</strong> (Please refer
* for more explanation.) * to the diagram in {@link ChannelPipeline} for more explanation.)
* <p> * <p>
* A {@link ChannelEvent} is interpreted differently by a {@link ChannelHandler} * A {@link ChannelEvent} is interpreted differently by a {@link ChannelHandler}
* depending on whether the event is a upstream event or a downstream event. * depending on whether the event is a upstream event or a downstream event.