Package fr.soleil.comete.tango.data.service

Examples of fr.soleil.comete.tango.data.service.TangoKey


    protected void initKey() {
        // init command0 key
        super.initKey();

        // init command1 key
        key1 = new TangoKey();
        TangoKeyTool.registerCommand(key1, getDeviceName(), commandName1);

        // init attribute key
        attributeKey = new TangoKey();
        TangoKeyTool.registerAttribute(attributeKey, getDeviceName(), attributeName);
    }
View Full Code Here


    protected void initKey() {
        // this is the read key
        super.initKey();

        // this is the write key
        writeKey = new TangoKey();
        TangoKeyTool.registerWriteAttribute(writeKey, getDeviceName(), getAttributeName());

        // init attribute quality key
        qualityKey = new TangoKey();
        TangoKeyTool.registerAttributeQuality(qualityKey, getDeviceName(), getAttributeName());
    }
View Full Code Here

        IChartViewer viewer = new ChartViewer();

        ChartViewerBox chartBox = new ChartViewerBox();

        TangoKey key = new TangoKey();
        TangoKeyTool.registerAttribute(key, "tango/tangotest/titan", "double_spectrum_ro");

        chartBox.connectWidget(viewer, key);

        return viewer;
View Full Code Here

        setTextAskConfirmation(DEFAULT_CONFIRMATION_TEXT);
    }

    @Override
    protected void initKey() {
        key = new TangoKey();
        TangoKeyTool.registerCommand(key, tangoHelper.getDeviceName(), tangoHelper.getEntityName());
    }
View Full Code Here

    protected void initKey() {
        // init commandStart key
        super.initKey();

        // init commandStop key
        keyStop = new TangoKey();
        TangoKeyTool.registerCommand(keyStop, tangoHelper.getDeviceName(), commandNameStop);
    }
View Full Code Here

    setTextAskConfirmation(DEFAULT_CONFIRMATION_TEXT);
  }

  @Override
  protected void initKey() {
    key = new TangoKey();
    TangoKeyTool.registerCommand(key, tangoHelper.getDeviceName(),
        tangoHelper.getEntityName());
  }
View Full Code Here

    public TangoKeyGenerator() {
    }

    @Override
    public IKey getBooleanMatrixKey() {
        TangoKey key = new TangoKey();
    TangoKeyTool.registerAttribute(key, "tango/tangotest/titan", "boolean_image_ro");
        return key;
    }
View Full Code Here

        return key;
    }

    @Override
    public IKey getBooleanScalarKey() {
        TangoKey key = new TangoKey();
    TangoKeyTool.registerAttribute(key, "tango/tangotest/titan", "boolean_scalar");
        return key;
    }
View Full Code Here

    }

    @Override
    protected void initKey() {
        // init attribute name key
        nameKey = new TangoKey();
        TangoKeyTool.registerAttribute(nameKey, getDeviceName(), getAttributeName());
        TangoKeyTool.registerAttributeQuality(nameKey, getDeviceName(), getAttributeName());

        TangoKey theKey = new TangoKey();
        TangoKeyTool.registerAttribute(theKey, getDeviceName(), getAttributeName());
        // Prefer using a non-refreshed source: we will use our own refreshing management
        TangoKeyTool.registerRefreshed(theKey, false);

        key = new HistoryKey(theKey);
View Full Code Here

        return key;
    }

    @Override
    public IKey getChartKey() {
        TangoKey key = new TangoKey();
    TangoKeyTool.registerAttribute(key, "tango/tangotest/titan", "double_spectrum_ro");
        return key;
    }
View Full Code Here

TOP

Related Classes of fr.soleil.comete.tango.data.service.TangoKey

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.