Package net.sourceforge.marathon.testproperties.ui

Examples of net.sourceforge.marathon.testproperties.ui.TestPropertiesDialog


    public void fileUpdated(File file) {
        updateView(file);
    }

    public void editTestProperties(File file) {
        TestPropertiesDialog propsDialog;
        try {
            propsDialog = new TestPropertiesDialog(displayWindow, file);
        } catch (IOException e) {
            JOptionPane.showMessageDialog(displayWindow, "Unable to read the test file", "Error in Reading",
                    JOptionPane.ERROR_MESSAGE);
            return;
        }
        propsDialog.setVisible(true);
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.marathon.testproperties.ui.TestPropertiesDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.