106107108109110111112
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, short attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
115116117118119120121
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, int attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
124125126127128129130
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, long attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
133134135136137138139
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, float attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
142143144145146147148
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, double attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
151152153154155156157
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, String attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
160161162163164165166
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, short[] attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
169170171172173174175
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, int[] attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
178179180181182183184
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, long[] attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }
187188189190191192193
* Sets an attribute. * * @param attr */ protected void setAttribute(String attributeName, float[] attributeValue) throws DevFailed { new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue); }