Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
c8875b5c
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看板
提交
c8875b5c
编写于
9月 10, 2010
作者:
M
malenkov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6915566: Closed swing tests failing with assert errors when run with -ea -esa
Reviewed-by: art, peterz
上级
477d3450
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
12 addition
and
10 deletion
+12
-10
src/share/classes/com/sun/java/swing/SwingUtilities3.java
src/share/classes/com/sun/java/swing/SwingUtilities3.java
+5
-4
src/share/classes/com/sun/java/swing/plaf/gtk/GTKPainter.java
...share/classes/com/sun/java/swing/plaf/gtk/GTKPainter.java
+5
-5
src/share/classes/javax/swing/plaf/synth/SynthTabbedPaneUI.java
...are/classes/javax/swing/plaf/synth/SynthTabbedPaneUI.java
+2
-1
未找到文件。
src/share/classes/com/sun/java/swing/SwingUtilities3.java
浏览文件 @
c8875b5c
/*
* Copyright (c) 2002, 20
09
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2002, 20
10
, Oracle and/or its affiliates. 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
...
...
@@ -31,13 +31,14 @@ import java.util.Collections;
import
java.util.Map
;
import
java.util.WeakHashMap
;
import
java.util.concurrent.Callable
;
import
java.applet.Applet
;
import
java.awt.AWTEvent
;
import
java.awt.EventQueue
;
import
java.awt.Component
;
import
java.awt.Container
;
import
java.awt.Window
;
import
javax.swing.JComponent
;
import
javax.swing.RepaintManager
;
import
javax.swing.SwingUtilities
;
/**
* A collection of utility methods for Swing.
...
...
@@ -91,7 +92,7 @@ public class SwingUtilities3 {
*/
public
static
void
setVsyncRequested
(
Container
rootContainer
,
boolean
isRequested
)
{
assert
SwingUtilities
.
getRoot
(
rootContainer
)
==
rootContainer
;
assert
(
rootContainer
instanceof
Applet
)
||
(
rootContainer
instanceof
Window
)
;
if
(
isRequested
)
{
vsyncedMap
.
put
(
rootContainer
,
Boolean
.
TRUE
);
}
else
{
...
...
@@ -106,7 +107,7 @@ public class SwingUtilities3 {
* @return {@code true} if vsync painting is requested for {@code rootContainer}
*/
public
static
boolean
isVsyncRequested
(
Container
rootContainer
)
{
assert
SwingUtilities
.
getRoot
(
rootContainer
)
==
rootContainer
;
assert
(
rootContainer
instanceof
Applet
)
||
(
rootContainer
instanceof
Window
)
;
return
Boolean
.
TRUE
==
vsyncedMap
.
get
(
rootContainer
);
}
...
...
src/share/classes/com/sun/java/swing/plaf/gtk/GTKPainter.java
浏览文件 @
c8875b5c
/*
* Copyright (c) 2002, 20
07
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2002, 20
10
, Oracle and/or its affiliates. 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
...
...
@@ -399,7 +399,7 @@ class GTKPainter extends SynthPainter {
}
String
detail
=
"arrow"
;
if
(
name
==
"ScrollBar.button"
)
{
if
(
(
name
==
"ScrollBar.button"
)
||
(
name
==
"TabbedPane.button"
)
)
{
if
(
arrowType
==
ArrowType
.
UP
||
arrowType
==
ArrowType
.
DOWN
)
{
detail
=
"vscrollbar"
;
}
else
{
...
...
@@ -409,7 +409,7 @@ class GTKPainter extends SynthPainter {
name
==
"Spinner.previousButton"
)
{
detail
=
"spinbutton"
;
}
else
if
(
name
!=
"ComboBox.arrowButton"
)
{
assert
false
;
assert
false
:
"unexpected name: "
+
name
;
}
int
gtkState
=
GTKLookAndFeel
.
synthStateToGTKState
(
...
...
@@ -436,7 +436,7 @@ class GTKPainter extends SynthPainter {
String
name
=
button
.
getName
();
String
detail
=
"button"
;
int
direction
=
SwingConstants
.
CENTER
;
if
(
name
==
"ScrollBar.button"
)
{
if
(
(
name
==
"ScrollBar.button"
)
||
(
name
==
"TabbedPane.button"
)
)
{
Integer
prop
=
(
Integer
)
button
.
getClientProperty
(
"__arrow_direction__"
);
direction
=
(
prop
!=
null
)
?
...
...
@@ -457,7 +457,7 @@ class GTKPainter extends SynthPainter {
}
else
if
(
name
==
"Spinner.nextButton"
)
{
detail
=
"spinbutton_up"
;
}
else
if
(
name
!=
"ComboBox.arrowButton"
)
{
assert
false
;
assert
false
:
"unexpected name: "
+
name
;
}
int
state
=
context
.
getComponentState
();
...
...
src/share/classes/javax/swing/plaf/synth/SynthTabbedPaneUI.java
浏览文件 @
c8875b5c
/*
* Copyright (c) 2002, 20
07
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2002, 20
10
, Oracle and/or its affiliates. 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
...
...
@@ -914,6 +914,7 @@ public class SynthTabbedPaneUI extends BasicTabbedPaneUI
UIResource
{
public
SynthScrollableTabButton
(
int
direction
)
{
super
(
direction
);
setName
(
"TabbedPane.button"
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录