Package com.qspin.qtaste.ui.tools

Examples of com.qspin.qtaste.ui.tools.ResourceManager


    private final static String INTERACTIVE_TABLE_LAYOUT_PROPERTY = "interactive_test_case_report_table_layout";
    private final static String EXECUTION_TABLE_LAYOUT_PROPERTY = "execution_test_case_report_table_layout";
    private String runName;

    private void initIcons() {
        ResourceManager resourceManager = ResourceManager.getInstance();
        passedImg = resourceManager.getImageIcon("icons/passed");
        passedImg.setDescription("Passed");
        failedImg = resourceManager.getImageIcon("icons/failed");
        failedImg.setDescription(("Failed"));
        runningImg = resourceManager.getImageIcon("icons/running");
        runningImg.setDescription(("Running"));
        naImg = resourceManager.getImageIcon("icons/na");
        naImg.setDescription(("Test in error"));
        /*snapShotImg = resourceManager.getImageIcon("icons/snapshot");
        snapShotImg.setDescription(("Failed"));*/
    }
View Full Code Here

TOP

Related Classes of com.qspin.qtaste.ui.tools.ResourceManager

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.