Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
517a0ca0
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看板
提交
517a0ca0
编写于
12月 11, 2009
作者:
O
ohair
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
7c946207
4dc24f49
变更
8
显示空白变更内容
内联
并排
Showing
8 changed file
with
12 addition
and
33 deletion
+12
-33
src/share/classes/java/lang/management/PlatformManagedObject.java
...e/classes/java/lang/management/PlatformManagedObject.java
+1
-1
src/share/classes/java/rmi/activation/Activatable.java
src/share/classes/java/rmi/activation/Activatable.java
+3
-3
src/share/classes/java/rmi/registry/LocateRegistry.java
src/share/classes/java/rmi/registry/LocateRegistry.java
+2
-2
src/share/classes/java/rmi/server/RemoteObjectInvocationHandler.java
...lasses/java/rmi/server/RemoteObjectInvocationHandler.java
+0
-1
src/share/classes/java/security/cert/CertPathValidatorException.java
...lasses/java/security/cert/CertPathValidatorException.java
+1
-1
src/share/classes/javax/accessibility/AccessibleContext.java
src/share/classes/javax/accessibility/AccessibleContext.java
+3
-3
src/share/classes/javax/accessibility/AccessibleExtendedText.java
...e/classes/javax/accessibility/AccessibleExtendedText.java
+0
-1
src/share/classes/javax/accessibility/AccessibleKeyBinding.java
...are/classes/javax/accessibility/AccessibleKeyBinding.java
+2
-21
未找到文件。
src/share/classes/java/lang/management/PlatformManagedObject.java
浏览文件 @
517a0ca0
...
...
@@ -32,7 +32,7 @@ import javax.management.ObjectName;
* for monitoring and managing a component in the Java platform.
* Each platform managed object has a unique
* <a href="ManagementFactory.html#MXBean">object name</a>
* for the {@linkplain ManagementFactory
.
getPlatformMBeanServer
* for the {@linkplain ManagementFactory
#
getPlatformMBeanServer
* platform MBeanServer} access.
* All platform MXBeans will implement this interface.
*
...
...
src/share/classes/java/rmi/activation/Activatable.java
浏览文件 @
517a0ca0
...
...
@@ -73,7 +73,7 @@ public abstract class Activatable extends RemoteServer {
* can be handled properly.
*
* <p>This method invokes the {@link
*
exportObject(Remote,String,MarshalledObject,boolean,por
t)
*
#exportObject(Remote,String,MarshalledObject,boolean,in
t)
* exportObject} method with this object, and the specified location,
* data, restart mode, and port. Subsequent calls to {@link #getID}
* will return the activation identifier returned from the call to
...
...
@@ -120,7 +120,7 @@ public abstract class Activatable extends RemoteServer {
* can be handled properly.
*
* <p>This method invokes the {@link
*
exportObject(Remote,String,MarshalledObject,boolean,por
t,RMIClientSocketFactory,RMIServerSocketFactory)
*
#exportObject(Remote,String,MarshalledObject,boolean,in
t,RMIClientSocketFactory,RMIServerSocketFactory)
* exportObject} method with this object, and the specified location,
* data, restart mode, port, and client and server socket factories.
* Subsequent calls to {@link #getID} will return the activation
...
...
@@ -312,7 +312,7 @@ public abstract class Activatable extends RemoteServer {
* separately, so that exceptions can be handled properly.
*
* <p>This method invokes the {@link
*
exportObject(Remote,String,MarshalledObject,boolean,por
t,RMIClientSocketFactory,RMIServerSocketFactory)
*
#exportObject(Remote,String,MarshalledObject,boolean,in
t,RMIClientSocketFactory,RMIServerSocketFactory)
* exportObject} method with the specified object, location, data,
* restart mode, and port, and <code>null</code> for both client and
* server socket factories, and then returns the resulting activation
...
...
src/share/classes/java/rmi/registry/LocateRegistry.java
浏览文件 @
517a0ca0
...
...
@@ -187,7 +187,7 @@ public final class LocateRegistry {
* host that accepts requests on the specified <code>port</code>.
*
* <p>The <code>Registry</code> instance is exported as if the static
* {@link UnicastRemoteObject
.
exportObject(Remote,int)
* {@link UnicastRemoteObject
#
exportObject(Remote,int)
* UnicastRemoteObject.exportObject} method is invoked, passing the
* <code>Registry</code> instance and the specified <code>port</code> as
* arguments, except that the <code>Registry</code> instance is
...
...
@@ -213,7 +213,7 @@ public final class LocateRegistry {
*
* <p>The <code>Registry</code> instance is exported as if
* the static {@link
* UnicastRemoteObject
.
exportObject(Remote,int,RMIClientSocketFactory,RMIServerSocketFactory)
* UnicastRemoteObject
#
exportObject(Remote,int,RMIClientSocketFactory,RMIServerSocketFactory)
* UnicastRemoteObject.exportObject} method is invoked, passing the
* <code>Registry</code> instance, the specified <code>port</code>, the
* specified <code>RMIClientSocketFactory</code>, and the specified
...
...
src/share/classes/java/rmi/server/RemoteObjectInvocationHandler.java
浏览文件 @
517a0ca0
...
...
@@ -138,7 +138,6 @@ public class RemoteObjectInvocationHandler
* instance
* @throws Throwable the exception to throw from the method invocation
* on the proxy instance
* @see
**/
public
Object
invoke
(
Object
proxy
,
Method
method
,
Object
[]
args
)
throws
Throwable
...
...
src/share/classes/java/security/cert/CertPathValidatorException.java
浏览文件 @
517a0ca0
...
...
@@ -216,7 +216,7 @@ public class CertPathValidatorException extends GeneralSecurityException {
/**
* Returns the reason that the validation failed. The reason is
* associated with the index of the certificate returned by
* {@link getIndex}.
* {@link
#
getIndex}.
*
* @return the reason that the validation failed, or
* <code>BasicReason.UNSPECIFIED</code> if a reason has not been
...
...
src/share/classes/javax/accessibility/AccessibleContext.java
浏览文件 @
517a0ca0
...
...
@@ -296,7 +296,7 @@ public abstract class AccessibleContext {
*
* @see #getAccessibleText
* @see #addPropertyChangeListener
* @see
#AccessibleText.
AccessibleTextSequence
* @see AccessibleTextSequence
*/
public
static
final
String
ACCESSIBLE_TEXT_PROPERTY
=
"AccessibleText"
;
...
...
@@ -311,7 +311,7 @@ public abstract class AccessibleContext {
*
* @see #getAccessibleText
* @see #addPropertyChangeListener
* @see
#AccessibleText.
AccessibleTextSequence
* @see AccessibleTextSequence
*
* @since 1.5
*/
...
...
@@ -334,7 +334,7 @@ public abstract class AccessibleContext {
*
* @see #getAccessibleText
* @see #addPropertyChangeListener
* @see
#AccessibleText.
AccessibleAttributeSequence
* @see AccessibleAttributeSequence
*
* @since 1.5
*/
...
...
src/share/classes/javax/accessibility/AccessibleExtendedText.java
浏览文件 @
517a0ca0
...
...
@@ -45,7 +45,6 @@ import javax.swing.text.*;
* @see Accessible#getAccessibleContext
* @see AccessibleContext
* @see AccessibleContext#getAccessibleText
* @see AccessibleText.AccessibleTextChunk
*
* @author Peter Korn
* @author Lynn Monsanto
...
...
src/share/classes/javax/accessibility/AccessibleKeyBinding.java
浏览文件 @
517a0ca0
...
...
@@ -32,16 +32,11 @@ package javax.accessibility;
* the standard mechanism for an assistive technology to determine the
* key bindings which exist for this object.
* Any object that has such key bindings should support this
* interface. Applications can determine if an object supports the
* AccessibleKeyBinding interface by first obtaining its AccessibleContext
* (see @link Accessible} and then calling the
* {@link AccessibleContext#getAccessibleKeyBinding} method. If the return
* value is not null, the object supports this interface.
* interface.
*
* @see Accessible
* @see Accessible#getAccessibleContext
* @see AccessibleContext
* @see AccessibleContext#getAccessibleKeyBinding
*
* @author Lynn Monsanto
* @since 1.4
...
...
@@ -58,21 +53,7 @@ public interface AccessibleKeyBinding {
/**
* Returns a key binding for this object. The value returned is an
* java.lang.Object which must be cast to appropriate type depending
* on the underlying implementation of the key. For example, if the
* Object returned is a javax.swing.KeyStroke, the user of this
* method should do the following:
* <nf><code>
* Component c = <get the component that has the key bindings>
* AccessibleContext ac = c.getAccessibleContext();
* AccessibleKeyBinding akb = ac.getAccessibleKeyBinding();
* for (int i = 0; i < akb.getAccessibleKeyBindingCount(); i++) {
* Object o = akb.getAccessibleKeyBinding(i);
* if (o instanceof javax.swing.KeyStroke) {
* javax.swing.KeyStroke keyStroke = (javax.swing.KeyStroke)o;
* <do something with the key binding>
* }
* }
* </code></nf>
* on the underlying implementation of the key.
*
* @param i zero-based index of the key bindings
* @return a javax.lang.Object which specifies the key binding
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录