Package fr.soleil.comete.dao.tangodao

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


     *
     * @param commandShortName the command short name (without device name)
     * @return The expected {@link TangoKey}
     */
    public TangoKey generateCommandKey(String commandShortName) {
        TangoKey key = new TangoKey();
        key.registerCommand(getModel(), commandShortName);
        return key;
    }
View Full Code Here


     *
     * @param propertyName the name of the device property
     * @return The expected {@link TangoKey}
     */
    public TangoKey generatePropertyKey(String propertyName) {
        TangoKey key = new TangoKey();
        key.registerDeviceProperty(getModel(), propertyName);
        return key;
    }
View Full Code Here

     * Generates the {@link TangoKey} that corresponds to the associated device
     *
     * @return The expected {@link TangoKey}
     */
    public TangoKey generateDeviceKey() {
        TangoKey key = new TangoKey();
        key.registerDeviceName(getModel());
        return key;
    }
View Full Code Here

TOP

Related Classes of fr.soleil.comete.dao.tangodao.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.