• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Java Sysout类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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");
    }
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:26,代码来源:DefaultPolicyChange_AWT.java


示例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);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:17,代码来源:bug8044614.java


示例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);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:26,代码来源:FileDialogForPackages.java


示例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);

}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:23,代码来源:SaveFileNameOverrideTest.java


示例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);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:26,代码来源:FileDialogForDirectories.java


示例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);

}
 
开发者ID:openjdk,项目名称:jdk7-jdk,代码行数:22,代码来源:SaveFileNameOverrideTest.java



注:本文中的test.java.awt.regtesthelpers.Sysout类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Frequency类代码示例发布时间:2022-05-21
下一篇:
Java Event类代码示例发布时间:2022-05-21
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap