Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
e77ef9ea
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
e77ef9ea
编写于
9月 11, 2013
作者:
C
chegar
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8024508: Fix doclint issues in com.sun.nio.sctp
Reviewed-by: alanb
上级
4976c8cc
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
51 addition
and
6 deletion
+51
-6
src/share/classes/com/sun/nio/sctp/Association.java
src/share/classes/com/sun/nio/sctp/Association.java
+7
-0
src/share/classes/com/sun/nio/sctp/IllegalReceiveException.java
...are/classes/com/sun/nio/sctp/IllegalReceiveException.java
+3
-0
src/share/classes/com/sun/nio/sctp/IllegalUnbindException.java
...hare/classes/com/sun/nio/sctp/IllegalUnbindException.java
+3
-0
src/share/classes/com/sun/nio/sctp/InvalidStreamException.java
...hare/classes/com/sun/nio/sctp/InvalidStreamException.java
+3
-0
src/share/classes/com/sun/nio/sctp/MessageInfo.java
src/share/classes/com/sun/nio/sctp/MessageInfo.java
+1
-1
src/share/classes/com/sun/nio/sctp/Notification.java
src/share/classes/com/sun/nio/sctp/Notification.java
+2
-0
src/share/classes/com/sun/nio/sctp/SctpChannel.java
src/share/classes/com/sun/nio/sctp/SctpChannel.java
+11
-2
src/share/classes/com/sun/nio/sctp/SctpMultiChannel.java
src/share/classes/com/sun/nio/sctp/SctpMultiChannel.java
+14
-2
src/share/classes/com/sun/nio/sctp/SctpServerChannel.java
src/share/classes/com/sun/nio/sctp/SctpServerChannel.java
+7
-1
未找到文件。
src/share/classes/com/sun/nio/sctp/Association.java
浏览文件 @
e77ef9ea
...
...
@@ -58,6 +58,13 @@ public class Association {
/**
* Initializes a new instance of this class.
*
* @param associationID
* The association ID
* @param maxInStreams
* The maximum number of inbound streams
* @param maxOutStreams
* The maximum number of outbound streams
*/
protected
Association
(
int
associationID
,
int
maxInStreams
,
...
...
src/share/classes/com/sun/nio/sctp/IllegalReceiveException.java
浏览文件 @
e77ef9ea
...
...
@@ -41,6 +41,9 @@ public class IllegalReceiveException extends IllegalStateException {
/**
* Constructs an instance of this class with the specified message.
*
* @param msg
* The String that contains a detailed message
*/
public
IllegalReceiveException
(
String
msg
)
{
super
(
msg
);
...
...
src/share/classes/com/sun/nio/sctp/IllegalUnbindException.java
浏览文件 @
e77ef9ea
...
...
@@ -41,6 +41,9 @@ public class IllegalUnbindException extends IllegalStateException {
/**
* Constructs an instance of this class with the specified detailed message.
*
* @param msg
* The String that contains a detailed message
*/
public
IllegalUnbindException
(
String
msg
)
{
super
(
msg
);
...
...
src/share/classes/com/sun/nio/sctp/InvalidStreamException.java
浏览文件 @
e77ef9ea
...
...
@@ -40,6 +40,9 @@ public class InvalidStreamException extends IllegalArgumentException {
/**
* Constructs an instance of this class with the specified detailed message.
*
* @param msg
* The String that contains a detailed message
*/
public
InvalidStreamException
(
String
msg
)
{
super
(
msg
);
...
...
src/share/classes/com/sun/nio/sctp/MessageInfo.java
浏览文件 @
e77ef9ea
...
...
@@ -48,7 +48,7 @@ import java.net.SocketAddress;
* longer required to be sent after the time period expires. It is not a hard
* timeout and may be influenced by whether the association supports the partial
* reliability extension, <a href=http://www.ietf.org/rfc/rfc3758.txt>RFC 3758
* <
a>
* <
/a>.
*
* <P> {@code MessageInfo} instances are not safe for use by multiple concurrent
* threads. If a MessageInfo is to be used by more than one thread then access
...
...
src/share/classes/com/sun/nio/sctp/Notification.java
浏览文件 @
e77ef9ea
...
...
@@ -40,6 +40,8 @@ package com.sun.nio.sctp;
public
interface
Notification
{
/**
* Returns the association that this notification is applicable to.
*
* @return The association
*/
public
Association
association
();
}
src/share/classes/com/sun/nio/sctp/SctpChannel.java
浏览文件 @
e77ef9ea
...
...
@@ -59,7 +59,7 @@ import java.nio.channels.SelectionKey;
* {@link #setOption(SctpSocketOption,Object) setOption} method. An SCTP
* channel support the following options:
* <blockquote>
* <table border>
* <table border
summary="Socket options"
>
* <tr>
* <th>Option Name</th>
* <th>Description</th>
...
...
@@ -636,6 +636,9 @@ public abstract class SctpChannel
/**
* Returns the value of a socket option.
*
* @param <T>
* The type of the socket option value
*
* @param name
* The socket option
*
...
...
@@ -659,6 +662,9 @@ public abstract class SctpChannel
/**
* Sets the value of a socket option.
*
* @param <T>
* The type of the socket option value
*
* @param name
* The socket option
*
...
...
@@ -752,6 +758,9 @@ public abstract class SctpChannel
* the {@code receive} method of this channel, if it does an
* {@link IllegalReceiveException} will be thrown.
*
* @param <T>
* The type of the attachment
*
* @param dst
* The buffer into which message bytes are to be transferred
*
...
...
@@ -831,7 +840,7 @@ public abstract class SctpChannel
* there was insufficient room for the message in the underlying
* output buffer
*
* @throws InvalidStreamExcepton
* @throws InvalidStreamExcept
i
on
* If {@code streamNumner} is negative or greater than or equal to
* the maximum number of outgoing streams
*
...
...
src/share/classes/com/sun/nio/sctp/SctpMultiChannel.java
浏览文件 @
e77ef9ea
...
...
@@ -63,7 +63,7 @@ import java.nio.channels.SelectionKey;
* {@link #setOption(SctpSocketOption,Object,Association) setOption} method. An
* {@code SctpMultiChannel} supports the following options:
* <blockquote>
* <table border>
* <table border
summary="Socket options"
>
* <tr>
* <th>Option Name</th>
* <th>Description</th>
...
...
@@ -394,6 +394,9 @@ public abstract class SctpMultiChannel
* Returns all of the remote addresses to which the given association on
* this channel's socket is connected.
*
* @param association
* The association
*
* @return All of the remote addresses for the given association, or
* an empty {@code Set} if the association has been shutdown
*
...
...
@@ -431,6 +434,9 @@ public abstract class SctpMultiChannel
* ignored if given. However, if the option is association specific then the
* association must be given.
*
* @param <T>
* The type of the socket option value
*
* @param name
* The socket option
*
...
...
@@ -464,6 +470,9 @@ public abstract class SctpMultiChannel
* ignored if given. However, if the option is association specific then the
* association must be given.
*
* @param <T>
* The type of the socket option value
*
* @param name
* The socket option
*
...
...
@@ -567,6 +576,9 @@ public abstract class SctpMultiChannel
* the {@code receive} method of this channel, if it does an
* {@link IllegalReceiveException} will be thrown.
*
* @param <T>
* The type of the attachment
*
* @param buffer
* The buffer into which bytes are to be transferred
*
...
...
@@ -673,7 +685,7 @@ public abstract class SctpMultiChannel
* there was insufficient room for the message in the underlying
* output buffer
*
* @throws InvalidStreamExcepton
* @throws InvalidStreamExcept
i
on
* If {@code streamNumber} is negative, or if an association already
* exists and {@code streamNumber} is greater than the maximum number
* of outgoing streams
...
...
src/share/classes/com/sun/nio/sctp/SctpServerChannel.java
浏览文件 @
e77ef9ea
...
...
@@ -47,7 +47,7 @@ import java.nio.channels.spi.AbstractSelectableChannel;
* {@link #setOption(SctpSocketOption,Object) setOption} method. SCTP server socket
* channels support the following options:
* <blockquote>
* <table border>
* <table border
summary="Socket options"
>
* <tr>
* <th>Option Name</th>
* <th>Description</th>
...
...
@@ -345,6 +345,9 @@ public abstract class SctpServerChannel
/**
* Returns the value of a socket option.
*
* @param <T>
* The type of the socket option value
*
* @param name
* The socket option
*
...
...
@@ -367,6 +370,9 @@ public abstract class SctpServerChannel
/**
* Sets the value of a socket option.
*
* @param <T>
* The type of the socket option value
*
* @param name
* The socket option
*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录