本文整理汇总了Java中test.java.awt.regtesthelpers.Sysout类的典型用法代码示例。如果您正苦于以下问题:Java Sysout类的具体用法?Java Sysout怎么用?Java Sysout使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Sysout类属于test.java.awt.regtesthelpers包,在下文中一共展示了Sysout类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: runTestAWT
import test.java.awt.regtesthelpers.Sysout; //导入依赖的package包/类
private static void runTestAWT(){
KeyboardFocusManager currentKFM = KeyboardFocusManager.getCurrentKeyboardFocusManager();
FocusTraversalPolicy defaultFTP = currentKFM.getDefaultFocusTraversalPolicy();
ContainerOrderFocusTraversalPolicy newFTP = new ContainerOrderFocusTraversalPolicy();
Frame frame = new Frame();
Window window = new Window(frame);
FocusTraversalPolicy resultFTP = window.getFocusTraversalPolicy();
Sysout.println("FocusTraversalPolicy on window = " + resultFTP);
/**
* Note: this call doesn't affect already created components as they have
* their policy initialized. Only new components will use this policy as
* their default policy.
**/
Sysout.println("Now will set another policy.");
currentKFM.setDefaultFocusTraversalPolicy(newFTP);
resultFTP = window.getFocusTraversalPolicy();
if (!resultFTP.equals(defaultFTP)) {
Sysout.println("Failure! FocusTraversalPolicy should not change");
Sysout.println("Was: " + defaultFTP);
Sysout.println("Become: " + resultFTP);
throw new RuntimeException("Failure! FocusTraversalPolicy should not change");
}
}
示例2: init
import test.java.awt.regtesthelpers.Sysout; //导入依赖的package包/类
public void init() {
String[] instructions = {
"(1) Go to the test directory test/java/awt/Focus/8044614",
"(2) Compile source file: javac TestApplet.java",
"(3) Open the \"main.html\" file in the browser",
"(4) Click the \"Start First Applet\" link to open the first applet window",
"(5) Wait for the applet to start (press \"Run\" to any security alerts that appears)",
"(6) Enter \"Hello\" to the text field",
"(7) Click the \"Start Second Applet)\" link to open the second applet window",
"(8) Wait for the applet to start (press \"Run\" to any security alerts that appears)",
"(9) Enter \"World\" to the text field",
"(10) Go back to the first applet and make sure you can enter some text to the text field"
};
Sysout.createDialogWithInstructions(instructions);
}
示例3: init
import test.java.awt.regtesthelpers.Sysout; //导入依赖的package包/类
@Override
public void init() {
if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
Sysout.createDialogWithInstructions(new String[]{
"Press PASS, this test is for MacOS X only."});
return;
}
System.setProperty("apple.awt.use-file-dialog-packages", "true");
setLayout(new GridLayout(1, 1));
fd = new FileDialog(new Frame(), "Open");
fd.setDirectory(APPLICATIONS_FOLDER);
showBtn = new Button("Show File Dialog");
showBtn.addActionListener(this);
add(showBtn);
String[] instructions = {
"1) Click on 'Show File Dialog' button. A file dialog will come up.",
"2) Navigate to the Applications folder if not already there",
"3) Check that the application bundles can be selected and can not be navigated",
"4) If it's true then the test passed, otherwise it failed."};
Sysout.createDialogWithInstructions(instructions);
}
示例4: init
import test.java.awt.regtesthelpers.Sysout; //导入依赖的package包/类
public void init() {
this.setLayout(new GridLayout(1, 1));
fd = new FileDialog(new Frame(), "Save", FileDialog.SAVE);
showBtn = new Button("Show File Dialog");
showBtn.addActionListener(this);
add(showBtn);
File tmpDir = new File(dirPath + File.separator + clickDirName);
tmpDir.mkdir();
String[] instructions = {
"1) Click on 'Show File Dialog' button. A file dialog will come up.",
"2) Double-click on '" + clickDirName + "' and click a confirmation",
" button, it can be 'OK', 'Save' or any other platform-dependent name.",
"3) See result of the test below"
};
Sysout.createDialogWithInstructions(instructions);
}
示例5: init
import test.java.awt.regtesthelpers.Sysout; //导入依赖的package包/类
@Override
public void init() {
if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
Sysout.createDialogWithInstructions(new String[]{
"Press PASS, this test is for MacOS X only."});
return;
}
System.setProperty("apple.awt.fileDialogForDirectories", "true");
setLayout(new GridLayout(1, 1));
fd = new FileDialog(new Frame(), "Open");
showBtn = new Button("Show File Dialog");
showBtn.addActionListener(this);
add(showBtn);
String[] instructions = {
"1) Click on 'Show File Dialog' button. A file dialog will come up.",
"2) Check that files can't be selected.",
"3) Check that directories can be selected.",
"4) Repeat steps 1 - 3 a few times for different files and directories.",
"5) If it's true then the test passed, otherwise it failed."};
Sysout.createDialogWithInstructions(instructions);
}
示例6: init
import test.java.awt.regtesthelpers.Sysout; //导入依赖的package包/类
public void init() {
this.setLayout(new GridLayout(1, 1));
fd = new FileDialog(new Frame(), "Save", FileDialog.SAVE);
showBtn = new Button("Show File Dialog");
showBtn.addActionListener(this);
add(showBtn);
File tmpDir = new File(dirPath + File.separator + clickDirName);
tmpDir.mkdir();
String[] instructions = {
"1) Click on 'Show File Dialog' button. A file dialog will come up.",
"2) Double-click on '" + clickDirName + "' and click OK.",
"3) See result of the test below"
};
Sysout.createDialogWithInstructions(instructions);
}