Examples of DevVarDoubleStringArray


Examples of fr.esrf.Tango.DevVarDoubleStringArray

        super(proxy);
    }

    public void addSample(Sample sample) throws DevFailed {
        argin = new DeviceData();
        DevVarDoubleStringArray config = sample.getFormattedConfiguration();
        if (config != null) {
            argin.insert(config);
            proxy.command_inout("AddPosition", argin);
        }
    }
View Full Code Here

Examples of fr.esrf.Tango.DevVarDoubleStringArray

        }
        return result;
    }

    public DevVarDoubleStringArray getFormattedConfiguration() {
        DevVarDoubleStringArray result = null;
        String[] strings = new String[2];
        strings[0] = sampleName;
        String config = rackNumber + "," + cellNumber + "," + ((cellposition == null) ? "" : cellposition.toString());
        strings[1] = config + getStringFormattedOrderList();
        double[] doubles = getArrayFormattedPositionList();

        if (doubles != null && strings != null) {
            result = new DevVarDoubleStringArray(doubles, strings);
        }
        return result;
    }
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.