Package fr.soleil.tango.clientapi

Examples of fr.soleil.tango.clientapi.TangoAttribute


     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, short attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here


     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, int attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, long attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, float attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, double attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, String attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, short[] attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, int[] attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, long[] attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

     * Sets an attribute.
     *
     * @param attr
     */
    protected void setAttribute(String attributeName, float[] attributeValue) throws DevFailed {
        new TangoAttribute(scanServerName + "/" + attributeName).write(attributeValue);
    }
View Full Code Here

TOP

Related Classes of fr.soleil.tango.clientapi.TangoAttribute

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.