Package fr.esrf.TangoApi

Examples of fr.esrf.TangoApi.DeviceAttribute.extractStringArray()


        // Attribute that stock the recorded files
        DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(getModel());
        if (proxy != null) {
            try {
                DeviceAttribute deviceAttribute = proxy.read_attribute(RECORDED_FILES_ATTR);
                recordedFiles = deviceAttribute.extractStringArray();
            }
            catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
View Full Code Here


                data = proxy.command_inout(DATA_MODEL_CMD);
                datamodels = data.extractStringArray();

                DeviceAttribute deviceAttribute = proxy.read_attribute(SCRIPTS_ATTR);
                tabScripts = deviceAttribute.extractStringArray();
            }
            catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
View Full Code Here

        // Attribute that stock the recorded files
        DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(getModel());
        if (proxy != null) {
            try {
                DeviceAttribute deviceAttribute = proxy.read_attribute(RECORDED_FILES_ATTR);
                recordedFiles = deviceAttribute.extractStringArray();
            }
            catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
View Full Code Here

        // get the attribute which contains all devices names for list 1 ( pre )
        DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(m_strPathTechnicalData);
        if (proxy != null) {
            try {
                DeviceAttribute deviceAttribute = proxy.read_attribute(ARCHIVED_ATTRIBUTES_ATTR);
                stringArray = deviceAttribute.extractStringArray();
            } catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
        if (stringArray != null) {
View Full Code Here

                data = proxy.command_inout(GET_DATA_MODEL_CMD);
                datamodels = data.extractStringArray();

                DeviceAttribute deviceAttribute = proxy.read_attribute(SCRIPTS_ATTR);
                tabScripts = deviceAttribute.extractStringArray();
            } catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
View Full Code Here

        // Attribute that stock the recorded files
        DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(getModel());
        if (proxy != null) {
            try {
                DeviceAttribute deviceAttribute = proxy.read_attribute(RECORDED_FILES_ATTR);
                recordedFiles = deviceAttribute.extractStringArray();
            } catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
View Full Code Here

                data = proxy.command_inout(DATA_MODEL_CMD);
                datamodels = data.extractStringArray();

                DeviceAttribute deviceAttribute = proxy.read_attribute(SCRIPTS_ATTR);
                tabScripts = deviceAttribute.extractStringArray();
            }
            catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
View Full Code Here

        // Attribute that stock the recorded files
        DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(getModel());
        if (proxy != null) {
            try {
                DeviceAttribute deviceAttribute = proxy.read_attribute(RECORDED_FILES_ATTR);
                recordedFiles = deviceAttribute.extractStringArray();
            }
            catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
View Full Code Here

        // get the attribute which contains all devices names for list 1 ( pre )
        DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(m_strPathTechnicalData);
        if (proxy != null) {
            try {
                DeviceAttribute deviceAttribute = proxy.read_attribute(ARCHIVED_ATTRIBUTES_ATTR);
                stringArray = deviceAttribute.extractStringArray();
            } catch (DevFailed exception) {
              TechnicalDataMessageManager.notifyReadAttributeErrorDetected(m_strPathTechnicalData, ARCHIVED_ATTRIBUTES_ATTR,exception);
            }
        }
        if (stringArray != null) {
View Full Code Here

                data = proxy.command_inout(DATA_MODEL_CMD);
                datamodels = data.extractStringArray();

                DeviceAttribute deviceAttribute = proxy.read_attribute(SCRIPTS_ATTR);
                tabScripts = deviceAttribute.extractStringArray();
            }
            catch (DevFailed exception) {
                exception.printStackTrace();
            }
        }
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.