Fix javadoc warnings
This commit is contained in:
parent
fb15e3672f
commit
5e01ab7f4e
@ -31,7 +31,7 @@ import java.net.SocketAddress;
|
|||||||
import java.nio.channels.DatagramChannel;
|
import java.nio.channels.DatagramChannel;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides an NIO based {@link io.netty.channel.socket.DatagramChannel}.
|
* Provides an NIO based {@link org.jboss.netty.channel.socket.DatagramChannel}.
|
||||||
*/
|
*/
|
||||||
public final class NioDatagramChannel extends AbstractNioChannel<DatagramChannel>
|
public final class NioDatagramChannel extends AbstractNioChannel<DatagramChannel>
|
||||||
implements org.jboss.netty.channel.socket.DatagramChannel {
|
implements org.jboss.netty.channel.socket.DatagramChannel {
|
||||||
|
@ -108,7 +108,7 @@ public class NioDatagramChannelFactory implements DatagramChannelFactory {
|
|||||||
* Creates a new instance.
|
* Creates a new instance.
|
||||||
*
|
*
|
||||||
* @param workerPool
|
* @param workerPool
|
||||||
* the {@link WorkerPool} which will be used to obtain the {@link Worker} that execute the I/O worker threads
|
* the {@link WorkerPool} which will be used to obtain the {@link NioDatagramWorker} that execute the I/O worker threads
|
||||||
*/
|
*/
|
||||||
public NioDatagramChannelFactory(WorkerPool<NioDatagramWorker> workerPool) {
|
public NioDatagramChannelFactory(WorkerPool<NioDatagramWorker> workerPool) {
|
||||||
this.workerPool = workerPool;
|
this.workerPool = workerPool;
|
||||||
|
@ -127,7 +127,7 @@ public class NioServerSocketChannelFactory implements ServerSocketChannelFactory
|
|||||||
* @param bossExecutor
|
* @param bossExecutor
|
||||||
* the {@link Executor} which will execute the boss threads
|
* the {@link Executor} which will execute the boss threads
|
||||||
* @param workerPool
|
* @param workerPool
|
||||||
* the {@link WorkerPool} which will be used to obtain the {@link Worker} that execute the I/O worker threads
|
* the {@link WorkerPool} which will be used to obtain the {@link NioWorker} that execute the I/O worker threads
|
||||||
*/
|
*/
|
||||||
public NioServerSocketChannelFactory(
|
public NioServerSocketChannelFactory(
|
||||||
Executor bossExecutor, WorkerPool<NioWorker> workerPool) {
|
Executor bossExecutor, WorkerPool<NioWorker> workerPool) {
|
||||||
|
@ -28,13 +28,13 @@ import org.jboss.netty.handler.codec.http.HttpVersion;
|
|||||||
/**
|
/**
|
||||||
* Provides the constants for the standard SPDY HTTP header names and commonly
|
* Provides the constants for the standard SPDY HTTP header names and commonly
|
||||||
* used utility methods that access an {@link SpdyHeaderBlock}.
|
* used utility methods that access an {@link SpdyHeaderBlock}.
|
||||||
* @apiviz.sterotype static
|
* @apiviz.stereotype static
|
||||||
*/
|
*/
|
||||||
public class SpdyHeaders {
|
public class SpdyHeaders {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SPDY HTTP header names
|
* SPDY HTTP header names
|
||||||
* @apiviz.sterotype static
|
* @apiviz.stereotype static
|
||||||
*/
|
*/
|
||||||
public static final class HttpNames {
|
public static final class HttpNames {
|
||||||
/**
|
/**
|
||||||
|
@ -21,13 +21,13 @@ import org.jboss.netty.handler.codec.http.HttpMessage;
|
|||||||
/**
|
/**
|
||||||
* Provides the constants for the header names and the utility methods
|
* Provides the constants for the header names and the utility methods
|
||||||
* used by the {@link SpdyHttpDecoder} and {@link SpdyHttpEncoder}.
|
* used by the {@link SpdyHttpDecoder} and {@link SpdyHttpEncoder}.
|
||||||
* @apiviz.sterotype static
|
* @apiviz.stereotype static
|
||||||
*/
|
*/
|
||||||
public final class SpdyHttpHeaders {
|
public final class SpdyHttpHeaders {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SPDY HTTP header names
|
* SPDY HTTP header names
|
||||||
* @apiviz.sterotype static
|
* @apiviz.stereotype static
|
||||||
*/
|
*/
|
||||||
public static final class Names {
|
public static final class Names {
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user