Package systole.domain.analysis.results

Examples of systole.domain.analysis.results.Parameter


        if (lsm.isSelectionEmpty()) {
            this.chartParameters.removeParameters();
        } else {
            int selectedRow = lsm.getMaxSelectionIndex();

            Parameter p = this.paramsModel.getParameter(selectedRow);

            this.jLblCurrentParam.setText(p.getDescription());

            this.txtXStartPoint.setText(p.getInitPos().getXasString());
            this.txtYStartPoint.setText(p.getInitPos().getYasString());

            this.txtXEndPoint.setText(p.getEndPos().getXasString());
            this.txtYEndPoint.setText(p.getEndPos().getYasString());
            this.txtParamValue.setText(p.getValueAsString());

            this.chartParameters.showParameter(selectedRow);
        }
    }
View Full Code Here


        int curRow = this.jTableParams.getSelectedRow();
        if (curRow == -1) {
            return;
        }

        Parameter p = this.paramsModel.getParameter(curRow);

        if (this.chkStartUseCurPoint.isSelected()) {

            this.chkEndUseCurPoint.setSelected(false);
            this.txtXStartPoint.setText(this.txtTraceXCoord.getText());
            this.txtYStartPoint.setText(this.txtTraceYCoord.getText());

            this.txtXEndPoint.setText(p.getEndPos().getXasString());
            this.txtYEndPoint.setText(p.getEndPos().getYasString());
            this.RTParamCalc();

        } else {

            this.txtXStartPoint.setText(p.getInitPos().getXasString());
            this.txtYStartPoint.setText(p.getInitPos().getYasString());
            this.txtParamValue.setText(p.getValueAsString());
        }
    }
View Full Code Here

        int curRow = this.jTableParams.getSelectedRow();
        if (curRow == -1) {
            return;
        }

        Parameter p = this.paramsModel.getParameter(curRow);

        if (this.chkEndUseCurPoint.isSelected()) {

            this.chkStartUseCurPoint.setSelected(false);
            this.txtXEndPoint.setText(this.txtTraceXCoord.getText());
            this.txtYEndPoint.setText(this.txtTraceYCoord.getText());
            this.txtXStartPoint.setText(p.getInitPos().getXasString());
            this.txtYStartPoint.setText(p.getInitPos().getYasString());
            this.RTParamCalc();

        } else {

            this.txtXEndPoint.setText(p.getEndPos().getXasString());
            this.txtYEndPoint.setText(p.getEndPos().getYasString());
            this.txtParamValue.setText(p.getValueAsString());
        }
    }
View Full Code Here

TOP

Related Classes of systole.domain.analysis.results.Parameter

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.