Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
7f1a49ec
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看板
提交
7f1a49ec
编写于
3月 17, 2011
作者:
M
malenkov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7021517: java.beans code comments have issues with HTML4 compliance
Reviewed-by: rupashka
上级
8730f90c
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
6 addition
and
6 deletion
+6
-6
src/share/classes/java/beans/DefaultPersistenceDelegate.java
src/share/classes/java/beans/DefaultPersistenceDelegate.java
+1
-1
src/share/classes/java/beans/DesignMode.java
src/share/classes/java/beans/DesignMode.java
+1
-1
src/share/classes/java/beans/IndexedPropertyChangeEvent.java
src/share/classes/java/beans/IndexedPropertyChangeEvent.java
+1
-1
src/share/classes/java/beans/Introspector.java
src/share/classes/java/beans/Introspector.java
+2
-2
src/share/classes/java/beans/package.html
src/share/classes/java/beans/package.html
+1
-1
未找到文件。
src/share/classes/java/beans/DefaultPersistenceDelegate.java
浏览文件 @
7f1a49ec
...
@@ -35,7 +35,7 @@ import sun.reflect.misc.*;
...
@@ -35,7 +35,7 @@ import sun.reflect.misc.*;
* is the delegate used by default for classes about
* is the delegate used by default for classes about
* which no information is available. The <code>DefaultPersistenceDelegate</code>
* which no information is available. The <code>DefaultPersistenceDelegate</code>
* provides, version resilient, public API-based persistence for
* provides, version resilient, public API-based persistence for
* classes that follow the JavaBeans conventions without any class specific
* classes that follow the JavaBeans
™
conventions without any class specific
* configuration.
* configuration.
* <p>
* <p>
* The key assumptions are that the class has a nullary constructor
* The key assumptions are that the class has a nullary constructor
...
...
src/share/classes/java/beans/DesignMode.java
浏览文件 @
7f1a49ec
...
@@ -31,7 +31,7 @@ package java.beans;
...
@@ -31,7 +31,7 @@ package java.beans;
* of java.beans.beancontext.BeanContext, in order to propagate to its nested hierarchy
* of java.beans.beancontext.BeanContext, in order to propagate to its nested hierarchy
* of java.beans.beancontext.BeanContextChild instances, the current "designTime" property.
* of java.beans.beancontext.BeanContextChild instances, the current "designTime" property.
* <p>
* <p>
* The JavaBeans specification defines the notion of design time as is a
* The JavaBeans
™
specification defines the notion of design time as is a
* mode in which JavaBeans instances should function during their composition
* mode in which JavaBeans instances should function during their composition
* and customization in a interactive design, composition or construction tool,
* and customization in a interactive design, composition or construction tool,
* as opposed to runtime when the JavaBean is part of an applet, application,
* as opposed to runtime when the JavaBean is part of an applet, application,
...
...
src/share/classes/java/beans/IndexedPropertyChangeEvent.java
浏览文件 @
7f1a49ec
...
@@ -26,7 +26,7 @@ package java.beans;
...
@@ -26,7 +26,7 @@ package java.beans;
/**
/**
* An "IndexedPropertyChange" event gets delivered whenever a component that
* An "IndexedPropertyChange" event gets delivered whenever a component that
* conforms to the JavaBeans
<TM>
specification (a "bean") changes a bound
* conforms to the JavaBeans
™
specification (a "bean") changes a bound
* indexed property. This class is an extension of <code>PropertyChangeEvent</code>
* indexed property. This class is an extension of <code>PropertyChangeEvent</code>
* but contains the index of the property that has changed.
* but contains the index of the property that has changed.
* <P>
* <P>
...
...
src/share/classes/java/beans/Introspector.java
浏览文件 @
7f1a49ec
...
@@ -87,7 +87,7 @@ import sun.reflect.misc.ReflectUtil;
...
@@ -87,7 +87,7 @@ import sun.reflect.misc.ReflectUtil;
* <p>
* <p>
* For more information about introspection and design patterns, please
* For more information about introspection and design patterns, please
* consult the
* consult the
* <a href="http://java.sun.com/products/javabeans/docs/index.html">JavaBeans specification</a>.
* <a href="http://java.sun.com/products/javabeans/docs/index.html">JavaBeans
™
specification</a>.
*/
*/
public
class
Introspector
{
public
class
Introspector
{
...
@@ -1245,7 +1245,7 @@ public class Introspector {
...
@@ -1245,7 +1245,7 @@ public class Introspector {
try
{
try
{
type
=
ClassFinder
.
findClass
(
name
,
type
.
getClassLoader
());
type
=
ClassFinder
.
findClass
(
name
,
type
.
getClassLoader
());
// Each customizer should inherit java.awt.Component and implement java.beans.Customizer
// Each customizer should inherit java.awt.Component and implement java.beans.Customizer
// according to the section 9.3 of JavaBeans specification
// according to the section 9.3 of JavaBeans
™
specification
if
(
Component
.
class
.
isAssignableFrom
(
type
)
&&
Customizer
.
class
.
isAssignableFrom
(
type
))
{
if
(
Component
.
class
.
isAssignableFrom
(
type
)
&&
Customizer
.
class
.
isAssignableFrom
(
type
))
{
return
type
;
return
type
;
}
}
...
...
src/share/classes/java/beans/package.html
浏览文件 @
7f1a49ec
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
Contains classes related to developing
Contains classes related to developing
<em>
beans
</em>
-- components
<em>
beans
</em>
-- components
based on the JavaBeans
<sup><font
size=
-2
>
TM
</font></sup>
architecture.
based on the JavaBeans
™
architecture.
A few of the
A few of the
classes are used by beans while they run in an application.
classes are used by beans while they run in an application.
For example, the event classes are
For example, the event classes are
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录