Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
2d021b88
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
2d021b88
编写于
1月 17, 2013
作者:
K
kshefov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7124209: [macosx] SpringLayout issue. BASELINE is not in the range: [NORTH, SOUTH]
Reviewed-by: serb, alexsch
上级
b08c0f84
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
161 addition
and
0 deletion
+161
-0
test/javax/swing/SpringLayout/4726194/bug4726194.java
test/javax/swing/SpringLayout/4726194/bug4726194.java
+161
-0
未找到文件。
test/javax/swing/SpringLayout/4726194/bug4726194.java
0 → 100644
浏览文件 @
2d021b88
/*
* Copyright (c) 2012, 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
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 4726194 7124209
* @summary Tests for 4726194
* @author Phil Milne
*/
import
java.awt.*
;
import
java.lang.reflect.InvocationTargetException
;
import
java.util.*
;
import
java.util.List
;
import
javax.swing.*
;
public
class
bug4726194
{
private
static
String
[]
hConstraints
=
{
SpringLayout
.
WEST
,
"Width"
,
SpringLayout
.
EAST
,
SpringLayout
.
HORIZONTAL_CENTER
};
private
static
String
[]
vConstraints
=
{
SpringLayout
.
NORTH
,
"Height"
,
SpringLayout
.
SOUTH
,
SpringLayout
.
VERTICAL_CENTER
,
SpringLayout
.
BASELINE
};
private
static
int
[]
FAIL
=
new
int
[
3
];
private
static
boolean
TEST_DUPLICATES
=
false
;
public
static
void
main
(
String
[]
args
)
{
try
{
SwingUtilities
.
invokeAndWait
(
new
Runnable
()
{
@Override
public
void
run
()
{
int
minLevel
=
2
;
int
maxLevel
=
2
;
for
(
int
i
=
minLevel
;
i
<=
maxLevel
;
i
++)
{
test
(
i
,
true
);
test
(
i
,
false
);
}
}
});
}
catch
(
InterruptedException
|
InvocationTargetException
ex
)
{
ex
.
printStackTrace
();
throw
new
RuntimeException
(
"FAILED: SwingUtilities.invokeAndWait method failed!"
);
}
}
public
static
void
test
(
int
level
,
boolean
horizontal
)
{
List
result
=
new
ArrayList
();
String
[]
constraints
=
horizontal
?
hConstraints
:
vConstraints
;
test
(
level
,
constraints
,
result
,
Arrays
.
asList
(
new
Object
[
level
]));
JTextField
tf
=
new
JTextField
(
""
);
tf
.
setFont
(
new
Font
(
"Dialog"
,
Font
.
PLAIN
,
6
));
System
.
out
.
print
(
"\t\t"
);
for
(
int
j
=
0
;
j
<
constraints
.
length
;
j
++)
{
String
constraint
=
constraints
[
j
];
System
.
out
.
print
(
constraint
+
" "
.
substring
(
constraint
.
length
()));
}
System
.
out
.
println
(
""
);
for
(
int
i
=
0
;
i
<
result
.
size
();
i
++)
{
SpringLayout
.
Constraints
c
=
new
SpringLayout
.
Constraints
(
tf
);
List
cc
=
(
List
)
result
.
get
(
i
);
for
(
int
j
=
0
;
j
<
cc
.
size
();
j
++)
{
String
constraint
=
(
String
)
cc
.
get
(
j
);
c
.
setConstraint
(
constraint
,
Spring
.
constant
((
j
+
1
)
*
10
));
}
System
.
out
.
print
(
" Input:\t\t"
);
for
(
int
j
=
0
;
j
<
constraints
.
length
;
j
++)
{
String
constraint
=
constraints
[
j
];
int
jj
=
cc
.
indexOf
(
constraint
);
String
val
=
cc
.
contains
(
constraint
)
?
Integer
.
toString
((
jj
+
1
)
*
10
)
:
"?"
;
System
.
out
.
print
(
val
+
"\t\t"
);
}
System
.
out
.
println
(
""
);
System
.
out
.
print
(
"Output:\t\t"
);
for
(
int
j
=
0
;
j
<
constraints
.
length
;
j
++)
{
String
constraint
=
constraints
[
j
];
Spring
spring
=
c
.
getConstraint
(
constraint
);
String
springVal
=
(
spring
==
null
)
?
"?"
:
Integer
.
toString
(
spring
.
getValue
());
System
.
out
.
print
(
springVal
);
System
.
out
.
print
(
"\t\t"
);
}
for
(
int
j
=
0
;
j
<
cc
.
size
();
j
++)
{
String
constraint
=
(
String
)
cc
.
get
(
j
);
Spring
con
=
c
.
getConstraint
(
constraint
);
if
(
con
==
null
||
con
.
getValue
()
!=
(
j
+
1
)
*
10
)
{
throw
new
RuntimeException
(
"Values are wrong!!! "
);
}
}
if
(
horizontal
)
{
int
[]
a1
=
getValues
(
c
,
new
String
[]{
SpringLayout
.
WEST
,
SpringLayout
.
WIDTH
,
SpringLayout
.
EAST
});
if
(
a1
[
0
]
+
a1
[
1
]
!=
a1
[
2
])
{
throw
new
RuntimeException
(
"WEST + WIDTH != EAST!!! "
);
}
int
[]
a2
=
getValues
(
c
,
new
String
[]{
SpringLayout
.
WEST
,
SpringLayout
.
WIDTH
,
SpringLayout
.
HORIZONTAL_CENTER
});
if
(
a2
[
0
]
+
a2
[
1
]
/
2
!=
a2
[
2
])
{
throw
new
RuntimeException
(
"WEST + WIDTH/2 != HORIZONTAL_CENTER!!! "
);
}
}
else
{
int
[]
a3
=
getValues
(
c
,
new
String
[]{
SpringLayout
.
NORTH
,
SpringLayout
.
HEIGHT
,
SpringLayout
.
SOUTH
});
if
(
a3
[
0
]
+
a3
[
1
]
!=
a3
[
2
])
{
throw
new
RuntimeException
(
"NORTH + HEIGHT != SOUTH!!! "
);
}
int
[]
a4
=
getValues
(
c
,
new
String
[]{
SpringLayout
.
NORTH
,
SpringLayout
.
HEIGHT
,
SpringLayout
.
VERTICAL_CENTER
});
int
vcDiff
=
Math
.
abs
(
a4
[
0
]
+
a4
[
1
]
/
2
-
a4
[
2
]);
if
(
vcDiff
>
1
)
{
throw
new
RuntimeException
(
"NORTH + HEIGHT/2 != VERTICAL_CENTER!!! "
);
}
int
[]
a5
=
getValues
(
c
,
new
String
[]{
SpringLayout
.
NORTH
,
SpringLayout
.
BASELINE
,
SpringLayout
.
SOUTH
});
if
(
a5
[
0
]
>
a5
[
1
]
!=
a5
[
1
]
>
a5
[
2
])
{
throw
new
RuntimeException
(
"BASELINE is not in the range: [NORTH, SOUTH]!!!"
);
}
}
System
.
out
.
println
(
""
);
}
System
.
out
.
println
(
""
);
}
private
static
int
[]
getValues
(
SpringLayout
.
Constraints
con
,
String
[]
cNames
)
{
int
[]
result
=
new
int
[
cNames
.
length
];
for
(
int
i
=
0
;
i
<
cNames
.
length
;
i
++)
{
String
name
=
cNames
[
i
];
Spring
s
=
con
.
getConstraint
(
name
);
if
(
s
==
null
)
{
System
.
out
.
print
(
"Warning: "
+
name
+
" is undefined. "
);
return
FAIL
;
}
result
[
i
]
=
s
.
getValue
();
}
return
result
;
}
public
static
void
test
(
int
level
,
String
[]
constraints
,
List
result
,
List
soFar
)
{
if
(
level
==
0
)
{
result
.
add
(
soFar
);
return
;
}
for
(
int
i
=
0
;
i
<
constraints
.
length
;
i
++)
{
if
(
soFar
.
contains
(
constraints
[
i
])
&&
!
TEST_DUPLICATES
)
{
continue
;
}
List
child
=
new
ArrayList
(
soFar
);
child
.
set
(
level
-
1
,
constraints
[
i
]);
test
(
level
-
1
,
constraints
,
result
,
child
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录