Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
96d68a8c
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看板
提交
96d68a8c
编写于
4月 12, 2009
作者:
M
martin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6827153: Miscellaneous typos in javadoc
Reviewed-by: alanb
上级
465c6dd2
变更
12
显示空白变更内容
内联
并排
Showing
12 changed file
with
19 addition
and
19 deletion
+19
-19
src/share/classes/java/lang/NoSuchFieldError.java
src/share/classes/java/lang/NoSuchFieldError.java
+2
-2
src/share/classes/java/nio/channels/AsynchronousDatagramChannel.java
...lasses/java/nio/channels/AsynchronousDatagramChannel.java
+1
-1
src/share/classes/java/nio/file/Path.java
src/share/classes/java/nio/file/Path.java
+6
-6
src/share/classes/java/nio/file/SecureDirectoryStream.java
src/share/classes/java/nio/file/SecureDirectoryStream.java
+1
-1
src/share/classes/java/security/AccessController.java
src/share/classes/java/security/AccessController.java
+1
-1
src/share/classes/java/security/AlgorithmParametersSpi.java
src/share/classes/java/security/AlgorithmParametersSpi.java
+1
-1
src/share/classes/java/security/PrivilegedActionException.java
...hare/classes/java/security/PrivilegedActionException.java
+1
-1
src/share/classes/java/security/Security.java
src/share/classes/java/security/Security.java
+1
-1
src/share/classes/java/security/SecurityPermission.java
src/share/classes/java/security/SecurityPermission.java
+1
-1
src/share/classes/java/security/SignatureSpi.java
src/share/classes/java/security/SignatureSpi.java
+1
-1
src/share/classes/java/security/cert/CertificateFactory.java
src/share/classes/java/security/cert/CertificateFactory.java
+1
-1
src/share/classes/java/security/cert/CertificateFactorySpi.java
...are/classes/java/security/cert/CertificateFactorySpi.java
+2
-2
未找到文件。
src/share/classes/java/lang/NoSuchFieldError.java
浏览文件 @
96d68a8c
...
...
@@ -41,14 +41,14 @@ class NoSuchFieldError extends IncompatibleClassChangeError {
private
static
final
long
serialVersionUID
=
-
3456430195886129035L
;
/**
* Constructs a <code>NoSuchFieldE
xception</code> with no detail
message.
* Constructs a <code>NoSuchFieldE
rror</code> with no detail
message.
*/
public
NoSuchFieldError
()
{
super
();
}
/**
* Constructs a <code>NoSuchFieldE
xception
</code> with the specified
* Constructs a <code>NoSuchFieldE
rror
</code> with the specified
* detail message.
*
* @param s the detail message.
...
...
src/share/classes/java/nio/channels/AsynchronousDatagramChannel.java
浏览文件 @
96d68a8c
...
...
@@ -443,7 +443,7 @@ public abstract class AsynchronousDatagramChannel
* at least care must be taken to ensure that the buffer is not accessed
* while the channel remains open.
*
* <p> If there is a security manager installed and the
the
channel is not
* <p> If there is a security manager installed and the channel is not
* connected then this method verifies that the target address and port number
* are permitted by the security manager's {@link SecurityManager#checkConnect
* checkConnect} method. The overhead of this security check can be avoided
...
...
src/share/classes/java/nio/file/Path.java
浏览文件 @
96d68a8c
...
...
@@ -494,7 +494,7 @@ public abstract class Path
* @throws IOException
* if an I/O error occurs
* @throws SecurityException
* In the case of the
the
default provider, and a security manager
* In the case of the default provider, and a security manager
* is installed, it denies {@link LinkPermission}<tt>("symbolic")</tt>
* or its {@link SecurityManager#checkWrite(String) checkWrite}
* method denies write access to the path of the symbolic link.
...
...
@@ -531,7 +531,7 @@ public abstract class Path
* @throws IOException
* if an I/O error occurs
* @throws SecurityException
* In the case of the
the
default provider, and a security manager
* In the case of the default provider, and a security manager
* is installed, it denies {@link LinkPermission}<tt>("hard")</tt>
* or its {@link SecurityManager#checkWrite(String) checkWrite}
* method denies write access to both this path and the path of the
...
...
@@ -560,7 +560,7 @@ public abstract class Path
* @throws IOException
* if an I/O error occurs
* @throws SecurityException
* In the case of the
the
default provider, and a security manager
* In the case of the default provider, and a security manager
* is installed, it checks that {@code FilePermission} has been
* granted with the "{@code readlink}" action to read the link.
*/
...
...
@@ -615,7 +615,7 @@ public abstract class Path
* obtained
*
* @throws SecurityException
* In the case of the
the
default provider, and a security manager
* In the case of the default provider, and a security manager
* is installed, the {@link #toAbsolutePath toAbsolutePath} method
* throws a security exception.
*/
...
...
@@ -636,7 +636,7 @@ public abstract class Path
* @throws IOError
* if an I/O error occurs
* @throws SecurityException
* In the case of the
the
default provider, and a security manager
* In the case of the default provider, and a security manager
* is installed, its {@link SecurityManager#checkPropertyAccess(String)
* checkPropertyAccess} method is invoked to check access to the
* system property {@code user.dir}
...
...
@@ -677,7 +677,7 @@ public abstract class Path
* @throws IOException
* if the file does not exist or an I/O error occurs
* @throws SecurityException
* In the case of the
the
default provider, and a security manager
* In the case of the default provider, and a security manager
* is installed, its {@link SecurityManager#checkRead(String) checkRead}
* method is invoked to check read access to the file, and where
* this path is not absolute, its {@link SecurityManager#checkPropertyAccess(String)
...
...
src/share/classes/java/nio/file/SecureDirectoryStream.java
浏览文件 @
96d68a8c
...
...
@@ -208,7 +208,7 @@ public abstract class SecureDirectoryStream
* @throws ClosedDirectoryStreamException
* if the directory stream is closed
* @throws NoSuchFileException
* if the
the
directory does not exist <i>(optional specific exception)</i>
* if the directory does not exist <i>(optional specific exception)</i>
* @throws DirectoryNotEmptyException
* if the directory could not otherwise be deleted because it is
* not empty <i>(optional specific exception)</i>
...
...
src/share/classes/java/security/AccessController.java
浏览文件 @
96d68a8c
...
...
@@ -425,7 +425,7 @@ public final class AccessController {
* Performs the specified <code>PrivilegedExceptionAction</code> with
* privileges enabled and restricted by the specified
* <code>AccessControlContext</code>. The action is performed with the
* intersection of the
the
permissions possessed by the caller's
* intersection of the permissions possessed by the caller's
* protection domain, and those possessed by the domains represented by the
* specified <code>AccessControlContext</code>.
* <p>
...
...
src/share/classes/java/security/AlgorithmParametersSpi.java
浏览文件 @
96d68a8c
...
...
@@ -102,7 +102,7 @@ public abstract class AlgorithmParametersSpi {
* parameters should be returned in an instance of the
* <code>DSAParameterSpec</code> class.
*
* @param paramSpec the
the
specification class in which
* @param paramSpec the specification class in which
* the parameters should be returned.
*
* @return the parameter specification.
...
...
src/share/classes/java/security/PrivilegedActionException.java
浏览文件 @
96d68a8c
...
...
@@ -87,7 +87,7 @@ public class PrivilegedActionException extends Exception {
}
/**
* Returns the
the
cause of this exception (the exception thrown by
* Returns the cause of this exception (the exception thrown by
* the privileged computation that resulted in this
* <code>PrivilegedActionException</code>).
*
...
...
src/share/classes/java/security/Security.java
浏览文件 @
96d68a8c
...
...
@@ -501,7 +501,7 @@ public final class Security {
* <li> <i><crypto_service>.<algorithm_or_type>
* <attribute_name>:< attribute_value></i>
* <p> The cryptographic service name must not contain any dots. There
* must be one or more space charaters between the
the
* must be one or more space charaters between the
* <i><algorithm_or_type></i> and the <i><attribute_name></i>.
* <p> A provider satisfies this selection criterion iff the
* provider implements the specified algorithm or type for the specified
...
...
src/share/classes/java/security/SecurityPermission.java
浏览文件 @
96d68a8c
...
...
@@ -118,7 +118,7 @@ import java.util.StringTokenizer;
* <td>setProperty.{key}</td>
* <td>Setting of the security property with the specified key</td>
* <td>This could include setting a security provider or defining
* the location of the
the
system-wide security policy. Malicious
* the location of the system-wide security policy. Malicious
* code that has permission to set a new security provider may
* set a rogue provider that steals confidential information such
* as cryptographic private keys. In addition, malicious code with
...
...
src/share/classes/java/security/SignatureSpi.java
浏览文件 @
96d68a8c
...
...
@@ -316,7 +316,7 @@ public abstract class SignatureSpi {
* overridden by a provider
*
* @exception InvalidAlgorithmParameterException if this method is
* overridden by a provider and the
the
given parameters
* overridden by a provider and the given parameters
* are inappropriate for this signature engine
*/
protected
void
engineSetParameter
(
AlgorithmParameterSpec
params
)
...
...
src/share/classes/java/security/cert/CertificateFactory.java
浏览文件 @
96d68a8c
...
...
@@ -460,7 +460,7 @@ public class CertificateFactory {
* {@link java.io.InputStream#reset() reset}, this method will
* consume the entire input stream. Otherwise, each call to this
* method consumes one CRL and the read position of the input stream
* is positioned to the next available byte after the
the
inherent
* is positioned to the next available byte after the inherent
* end-of-CRL marker. If the data in the
* input stream does not contain an inherent end-of-CRL marker (other
* than EOF) and there is trailing data after the CRL is parsed, a
...
...
src/share/classes/java/security/cert/CertificateFactorySpi.java
浏览文件 @
96d68a8c
...
...
@@ -88,7 +88,7 @@ public abstract class CertificateFactorySpi {
* {@link java.io.InputStream#reset() reset}, this method will
* consume the entire input stream. Otherwise, each call to this
* method consumes one certificate and the read position of the input stream
* is positioned to the next available byte after the
the
inherent
* is positioned to the next available byte after the inherent
* end-of-certificate marker. If the data in the
* input stream does not contain an inherent end-of-certificate marker (other
* than EOF) and there is trailing data after the certificate is parsed, a
...
...
@@ -261,7 +261,7 @@ public abstract class CertificateFactorySpi {
* {@link java.io.InputStream#reset() reset}, this method will
* consume the entire input stream. Otherwise, each call to this
* method consumes one CRL and the read position of the input stream
* is positioned to the next available byte after the
the
inherent
* is positioned to the next available byte after the inherent
* end-of-CRL marker. If the data in the
* input stream does not contain an inherent end-of-CRL marker (other
* than EOF) and there is trailing data after the CRL is parsed, a
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录