Examples of TangoKey


Examples of fr.soleil.comete.dao.tangodao.TangoKey

        return m_helper.getCompleteEntityName();
    }

    @Override
    public TangoKey initKey() {
        TangoKey key = new TangoKey();
        key.registerCommand(m_helper.getDeviceName(), m_helper.getEntityName());
        return key;
    }
View Full Code Here

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

    @Override
    protected void initKey() {
        super.initKey();

        // this is the status key
        statusKey = new TangoKey();
        TangoKeyTool.registerAttribute(statusKey, getDeviceName(), "Status");
    }
View Full Code Here

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

    /**
     * init the tango key on attribute (read part). This method can be overriden
     * to register another type of key (ie attribute write part, command, etc.)
     */
    protected void initKey() {
        key = new TangoKey();
        TangoKeyTool.registerAttribute(key, tangoHelper.getDeviceName(), tangoHelper.getEntityName());
    }
View Full Code Here

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

    @Override
    protected void initKey() {
        super.initKey();

        // this is the status key
        statusKey = new TangoKey();
        TangoKeyTool.registerAttribute(statusKey, getDeviceName(), "Status");
    }
View Full Code Here

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

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

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

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

    /**
     * init the tango key on attribute (read part). This method can be override to register another
     * type of key(ie attribute write part)
     */
    protected void initKey() {
        key = new TangoKey();
        TangoKeyTool.registerAttribute(key, tangoHelper.getDeviceName(),
                tangoHelper.getEntityName());
    }
View Full Code Here

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

    /**
     * init the tango key on attribute (read part). This method can be override to register another
     * type of key(ie attribute write part)
     */
    protected void initKey() {
        key = new TangoKey();
        TangoKeyTool.registerAttribute(key, tangoHelper.getDeviceName(),
                tangoHelper.getEntityName());
    }
View Full Code Here

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

    public static final String DEFAULT_CONFIRMATION_TITLE = "Confirmation";
    public static final String DEFAULT_CONFIRMATION_TEXT = "Voulez-vous ex�cuter la commande ?";

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

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

    protected void initKey() {
        if (displayReadValue) {
            super.initKey();// display read part
        }
        else {
            key = new TangoKey();
            TangoKeyTool.registerWriteAttribute(key, tangoHelper.getDeviceName(),
                    tangoHelper.getEntityName());
        }
    }
View Full Code Here

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

        if ((canInitDAO() && (widget != null))) {
            clearDAO();

            boolean connected;
            for (final String element : attributeNameList) {
                final TangoKey aKey = new TangoKey();
                TangoKeyTool.registerAttribute(aKey, element);

                connected = ((ChartViewerBox) mybox).connectWidget(widget, aKey);

                if (!connected) {
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.