Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
cb271578
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看板
提交
cb271578
编写于
2月 05, 2009
作者:
M
malenkov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
4769844: classes in java.beans that are serializable but don't define serialVersionUID
Reviewed-by: peterz, rupashka
上级
61d6c1ba
变更
11
隐藏空白更改
内联
并排
Showing
11 changed file
with
24 addition
and
12 deletion
+24
-12
src/share/classes/java/beans/IndexedPropertyChangeEvent.java
src/share/classes/java/beans/IndexedPropertyChangeEvent.java
+2
-1
src/share/classes/java/beans/IntrospectionException.java
src/share/classes/java/beans/IntrospectionException.java
+2
-1
src/share/classes/java/beans/PropertyChangeEvent.java
src/share/classes/java/beans/PropertyChangeEvent.java
+2
-1
src/share/classes/java/beans/PropertyVetoException.java
src/share/classes/java/beans/PropertyVetoException.java
+2
-2
src/share/classes/java/beans/beancontext/BeanContextEvent.java
...hare/classes/java/beans/beancontext/BeanContextEvent.java
+2
-1
src/share/classes/java/beans/beancontext/BeanContextMembershipEvent.java
...es/java/beans/beancontext/BeanContextMembershipEvent.java
+2
-1
src/share/classes/java/beans/beancontext/BeanContextServiceAvailableEvent.java
...a/beans/beancontext/BeanContextServiceAvailableEvent.java
+2
-1
src/share/classes/java/beans/beancontext/BeanContextServiceRevokedEvent.java
...ava/beans/beancontext/BeanContextServiceRevokedEvent.java
+2
-1
src/share/classes/java/beans/beancontext/BeanContextServicesSupport.java
...es/java/beans/beancontext/BeanContextServicesSupport.java
+3
-1
src/share/classes/sun/beans/editors/ColorEditor.java
src/share/classes/sun/beans/editors/ColorEditor.java
+3
-1
src/share/classes/sun/beans/editors/FontEditor.java
src/share/classes/sun/beans/editors/FontEditor.java
+2
-1
未找到文件。
src/share/classes/java/beans/IndexedPropertyChangeEvent.java
浏览文件 @
cb271578
/*
* Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
* Copyright 2003
-2009
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -41,6 +41,7 @@ package java.beans;
* @author Mark Davidson
*/
public
class
IndexedPropertyChangeEvent
extends
PropertyChangeEvent
{
private
static
final
long
serialVersionUID
=
-
320227448495806870L
;
private
int
index
;
...
...
src/share/classes/java/beans/IntrospectionException.java
浏览文件 @
cb271578
/*
* Copyright 1996-
1998
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1996-
2009
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -36,6 +36,7 @@ package java.beans;
public
class
IntrospectionException
extends
Exception
{
private
static
final
long
serialVersionUID
=
-
3728150539969542619L
;
/**
* Constructs an <code>IntrospectionException</code> with a
...
...
src/share/classes/java/beans/PropertyChangeEvent.java
浏览文件 @
cb271578
/*
* Copyright 1996-200
6
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1996-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -44,6 +44,7 @@ package java.beans;
*/
public
class
PropertyChangeEvent
extends
java
.
util
.
EventObject
{
private
static
final
long
serialVersionUID
=
7042693688939648123L
;
/**
* Constructs a new <code>PropertyChangeEvent</code>.
...
...
src/share/classes/java/beans/PropertyVetoException.java
浏览文件 @
cb271578
/*
* Copyright 1996-
1998
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1996-
2009
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -33,7 +33,7 @@ package java.beans;
public
class
PropertyVetoException
extends
Exception
{
private
static
final
long
serialVersionUID
=
129596057694162164L
;
/**
* Constructs a <code>PropertyVetoException</code> with a
...
...
src/share/classes/java/beans/beancontext/BeanContextEvent.java
浏览文件 @
cb271578
/*
* Copyright 1997-200
3
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1997-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -48,6 +48,7 @@ import java.beans.beancontext.BeanContext;
*/
public
abstract
class
BeanContextEvent
extends
EventObject
{
private
static
final
long
serialVersionUID
=
7267998073569045052L
;
/**
* Contruct a BeanContextEvent
...
...
src/share/classes/java/beans/beancontext/BeanContextMembershipEvent.java
浏览文件 @
cb271578
/*
* Copyright 1997-200
4
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1997-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -55,6 +55,7 @@ import java.util.Iterator;
* @see java.beans.beancontext.BeanContextMembershipListener
*/
public
class
BeanContextMembershipEvent
extends
BeanContextEvent
{
private
static
final
long
serialVersionUID
=
3499346510334590959L
;
/**
* Contruct a BeanContextMembershipEvent
...
...
src/share/classes/java/beans/beancontext/BeanContextServiceAvailableEvent.java
浏览文件 @
cb271578
/*
* Copyright 1998-200
4
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1998-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -40,6 +40,7 @@ import java.util.Iterator;
*/
public
class
BeanContextServiceAvailableEvent
extends
BeanContextEvent
{
private
static
final
long
serialVersionUID
=
-
5333985775656400778L
;
/**
* Construct a <code>BeanContextAvailableServiceEvent</code>.
...
...
src/share/classes/java/beans/beancontext/BeanContextServiceRevokedEvent.java
浏览文件 @
cb271578
/*
* Copyright 1998-200
4
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1998-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -37,6 +37,7 @@ import java.beans.beancontext.BeanContextServices;
* </p>
*/
public
class
BeanContextServiceRevokedEvent
extends
BeanContextEvent
{
private
static
final
long
serialVersionUID
=
-
1295543154724961754L
;
/**
* Construct a <code>BeanContextServiceEvent</code>.
...
...
src/share/classes/java/beans/beancontext/BeanContextServicesSupport.java
浏览文件 @
cb271578
/*
* Copyright 1998-200
6
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1998-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -60,6 +60,7 @@ import java.util.Locale;
public
class
BeanContextServicesSupport
extends
BeanContextSupport
implements
BeanContextServices
{
private
static
final
long
serialVersionUID
=
-
8494482757288719206L
;
/**
* <p>
...
...
@@ -594,6 +595,7 @@ public class BeanContextServicesSupport extends BeanContextSupport
*/
protected
static
class
BCSSServiceProvider
implements
Serializable
{
private
static
final
long
serialVersionUID
=
861278251667444782L
;
BCSSServiceProvider
(
Class
sc
,
BeanContextServiceProvider
bcsp
)
{
super
();
...
...
src/share/classes/sun/beans/editors/ColorEditor.java
浏览文件 @
cb271578
/*
* Copyright 1996-200
7
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1996-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -29,6 +29,8 @@ import java.awt.*;
import
java.beans.*
;
public
class
ColorEditor
extends
Panel
implements
PropertyEditor
{
private
static
final
long
serialVersionUID
=
1781257185164716054L
;
public
ColorEditor
()
{
setLayout
(
null
);
...
...
src/share/classes/sun/beans/editors/FontEditor.java
浏览文件 @
cb271578
/*
* Copyright 1996-200
7
Sun Microsystems, Inc. All Rights Reserved.
* Copyright 1996-200
9
Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -29,6 +29,7 @@ import java.awt.*;
import
java.beans.*
;
public
class
FontEditor
extends
Panel
implements
java
.
beans
.
PropertyEditor
{
private
static
final
long
serialVersionUID
=
6732704486002715933L
;
public
FontEditor
()
{
setLayout
(
null
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录