Package com.qspin.qtaste.ui.testcampaign

Examples of com.qspin.qtaste.ui.testcampaign.CampaignWriter.save()


                    "Campaign name:", JOptionPane.QUESTION_MESSAGE);
            if (newCampaign != null) {
                // add the new campaign in the list
                if (tcPane.getMainPanel().getTestCampaignPanel().addTestCampaign(newCampaign) >= 0) {
                   String fileName = StaticConfiguration.CAMPAIGN_DIRECTORY + File.separator + newCampaign + "." + StaticConfiguration.CAMPAIGN_FILE_EXTENSION;
                   campaign.save(fileName, newCampaign);
                   JOptionPane.showMessageDialog(null, "Campaign file has been saved in " + fileName +  ".", "Information", JOptionPane.INFORMATION_MESSAGE);
                }
            }
           
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.