Package fr.soleil.salsa.entity.impl.scan2d

Examples of fr.soleil.salsa.entity.impl.scan2d.ScanResult2DImpl


    /**
     * Default constructor, that creates a new instance of ScanResultImpl and wraps it.
     */
    public ScanResult2DModel() {
        this(new ScanResult2DImpl());
    }
View Full Code Here


   
    /**
     * Default constructor, that creates a new instance of ScanResultImpl and wraps it.
     */
    public ScanResult2DModel() {
        this(new ScanResult2DImpl());
    }
View Full Code Here

                        case 1:
                            scanResult = new ScanResult1DImpl();
                            scanResult.setResultType(IScanResult.ResultType.RESULT_1D);
                            break;
                        case 2:
                            scanResult = new ScanResult2DImpl();
                            scanResult.setResultType(IScanResult.ResultType.RESULT_2D);
                            break;
                    }

                    if (scanResult != null) {
View Full Code Here

                        case 1:
                            scanResult = new ScanResult1DImpl();
                            scanResult.setResultType(IScanResult.ResultType.RESULT_1D);
                            break;
                        case 2:
                            scanResult = new ScanResult2DImpl();
                            scanResult.setResultType(IScanResult.ResultType.RESULT_2D);
                            break;
                    }

                    if (scanResult != null) {
View Full Code Here

                TangoAttribute scanTypeAttribute = new TangoAttribute(scanServerName + "/scanType");
                int scanType = scanTypeAttribute.read(Integer.class);
                if (scanType != 2) {
                    return null;
                }
                scanResult = new ScanResult2DImpl();
                scanResult.setScanServer(scanServerName);
                scanResult.setResultType(IScanResult.ResultType.RESULT_2D);

                // Name.
                actionName = "read_attribute(\"runName\")";
View Full Code Here

                        case 1:
                            scanResult = new ScanResult1DImpl();
                            scanResult.setResultType(IScanResult.ResultType.RESULT_1D);
                            break;
                        case 2:
                            scanResult = new ScanResult2DImpl();
                            scanResult.setResultType(IScanResult.ResultType.RESULT_2D);
                            break;
                    }

                    if (scanResult != null) {
View Full Code Here

                    case 1:
                        scanResult = new ScanResult1DImpl();
                        scanResult.setResultType(IScanResult.ResultType.RESULT_1D);
                        break;
                    case 2:
                        scanResult = new ScanResult2DImpl();
                        scanResult.setResultType(IScanResult.ResultType.RESULT_2D);
                        break;
                    }

                    if (scanResult != null) {
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.entity.impl.scan2d.ScanResult2DImpl

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.