Examples of JpnlAnalysis


Examples of systole.view.tabs.JpnlAnalysis

    /**
     *
     */
    public void saveAnalysis() {
        JpnlAnalysis analysis = (JpnlAnalysis) this.mainForm.getjTabPnlMain().getSelectedComponent();
        if (analysis != null) {
            if (analysis.getController().wasModified()) {
                analysis.getController().saveAnalysis(false);
            }
        }
    }
View Full Code Here

Examples of systole.view.tabs.JpnlAnalysis

    /**
     * print report of selected analysis
     */
    public void printReport() {
        JpnlAnalysis analysis = (JpnlAnalysis) this.mainForm.getjTabPnlMain().getSelectedComponent();
        if (analysis != null) {
            analysis.getController().printReport();
        }
    }
View Full Code Here

Examples of systole.view.tabs.JpnlAnalysis

    /**
     * preview report of selected analysis
     */
    public void previewReport() {
        JpnlAnalysis analysis = (JpnlAnalysis) this.mainForm.getjTabPnlMain().getSelectedComponent();
        if (analysis != null) {
            analysis.getController().previewReport();
        }
    }
View Full Code Here

Examples of systole.view.tabs.JpnlAnalysis

    /**
     * export report of selected analysis
     */
    public void exportReport() {
        JpnlAnalysis analysis = (JpnlAnalysis) this.mainForm.getjTabPnlMain().getSelectedComponent();
        if (analysis != null) {
            analysis.getController().generateReport();
        }
    }
View Full Code Here

Examples of systole.view.tabs.JpnlAnalysis

    private void initControllerContext() {
        this.selectionModel = new SelectionModel();
        this.reportModel = new ReportModel(this.analysis);
        this.resultsModel = new ResultsModel(this.analysis);
        this.frmAnalysis = new JpnlAnalysis(this);
        this.controllerIndex = new ControllerIndex(this.analysis.getPatient());
        this.controllerBackground = new ControllerBackground(this.analysis.getPatient());
    }
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.