Package fr.soleil.salsa.comete.key

Examples of fr.soleil.salsa.comete.key.TimebaseStateKey


        @Override
        protected void generateKeys() {
            deviceKRead = null;
            deviceKWrite = null;
            deviceStateKey = new TimebaseStateKey(device, factoryClassName);
        }
View Full Code Here


    private void refresh() {
        if (timebase != null && timebase.getName() != null && !timebase.getName().trim().equals("")) {
            this.view.setTimebaseName(timebase.getName());
            this.view.setEnabled(timebase.isEnabled());
            String factoryClassName = SalsaDAOFactory.class.getName();
            TimebaseStateKey timebaseStateKey = new TimebaseStateKey(timebase, factoryClassName);
            view.setTimebaseStateKey(factoryClassName, timebaseStateKey);
            view.switchDAOFactory(factoryClassName);
            view.setActive(true);
            // Resume the DAO if it was suspended.
            AbstractDAOFactory factory = DAOFactoryManager.registerFactory(factoryClassName);
View Full Code Here

        @Override
        protected void generateKeys() {
            deviceKRead = null;
            deviceKWrite = null;
            deviceStateKey = new TimebaseStateKey(device, factoryClassName);
        }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.comete.key.TimebaseStateKey

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.