194195196197198199200201202203204
synchronized (m_stateList) { m_stateNumberList.put(deviceName, Integer.valueOf(devState.value())); } } status = deviceProxy.status(); if (status != null) { synchronized (m_statusList) { m_statusList.put(deviceName, status); } }
327328329330331332333334335336337
public static String getStatus(String scanServerName) { String status = ""; DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(scanServerName, false); try { if (proxy != null) { status = proxy.status(); } } catch (Exception e) { e.printStackTrace(); } return status;
234235236237238239240241242243244
public static String getStatus(String scanServerName) { String status = ""; DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(scanServerName); try { if (proxy != null) { status = proxy.status(); } } catch (Exception e) { e.printStackTrace(); }
331332333334335336337338339340341
public static String getStatus(String scanServerName) { String status = ""; DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(scanServerName, false); try { if (proxy != null) { status = proxy.status(); } } catch (DevFailed e) { LOGGER.error("Cannot execute " + scanServerName + "/Status " + DevFailedUtils.toString(e)); } return status;
258259260261262263264265266267268
public static String getStatus(String scanServerName) { String status = ""; DeviceProxy proxy = TangoDeviceHelper.getDeviceProxy(scanServerName); try { if (proxy != null) { status = proxy.status(); } } catch (Exception e) { e.printStackTrace(); } return status;
208209210211212213214215216217218
325326327328329330331332333334335
233234235236237238239240241242243