Package systole.view.wizard.analysis

Examples of systole.view.wizard.analysis.WizardAnalysisImplement


    /**
     * @return if the analysis can be created
     */
    public boolean createAnalysis() {

        WizardImplement wizard = new WizardAnalysisImplement(SystoleApp.getApplication().getMainFrame());
        this.analysis = (Analysis) wizard.executeWizard();

        if (this.analysis != null) {
            this.initControllerContext();
            this.startFiltering();
            return true;
View Full Code Here


     * @param filePath
     * @return if the analysis can be created
     */
    public boolean createAnalysis(RawSignal rawSignal, String filePath) {

        WizardImplement wizard = new WizardAnalysisImplement(SystoleApp.getApplication().getMainFrame(), rawSignal, filePath);
        this.analysis = (Analysis) wizard.executeWizard();

        if (this.analysis != null) {
            this.initControllerContext();
            this.startFiltering();
            return true;
View Full Code Here

TOP

Related Classes of systole.view.wizard.analysis.WizardAnalysisImplement

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.