本文整理汇总了Java中com.sun.awt.SecurityWarning类的典型用法代码示例。如果您正苦于以下问题:Java SecurityWarning类的具体用法?Java SecurityWarning怎么用?Java SecurityWarning使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SecurityWarning类属于com.sun.awt包,在下文中一共展示了SecurityWarning类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import com.sun.awt.SecurityWarning; //导入依赖的package包/类
private static void init()
{
String[] instructions =
{
"This is an AUTOMATIC test, simply wait until it is done.",
"The result (passed or failed) will be shown in the",
"message window below."
};
Sysout.createDialog( );
Sysout.printInstructions( instructions );
Frame f = new Frame();
f.setSize(100, 100);
f.setVisible(true);
Robot robot = Util.createRobot();
Util.waitForIdle(robot);
Dimension size = SecurityWarning.getSize(f);
if (size.width == 0 || size.height == 0) {
fail("Reported security warning size: " + size);
return;
}
pass();
}
示例2: init
import com.sun.awt.SecurityWarning; //导入依赖的package包/类
private static void init()
{
String[] instructions =
{
"This is an AUTOMATIC test, simply wait until it is done.",
"The result (passed or failed) will be shown in the",
"message window below."
};
Sysout.createDialog( );
Sysout.printInstructions( instructions );
// Install the security manager so that all subsequently created
// windows display the security warning.
System.setSecurityManager(new SecurityManager() {
@Override
public void checkPermission(Permission perm) {
}
@Override
public boolean checkTopLevelWindow(Object window) {
return false;
}
});
Frame f = new Frame();
f.setSize(100, 100);
f.setVisible(true);
Robot robot = Util.createRobot();
Util.waitForIdle(robot);
Dimension size = SecurityWarning.getSize(f);
if (size.width == 0 || size.height == 0) {
fail("Reported security warning size: " + size);
return;
}
pass();
}