Package fr.soleil.salsa.client.comete.dao

Examples of fr.soleil.salsa.client.comete.dao.ActuatorImageDAO


        if (dao == null) {
            if (abstractKey instanceof ScanResult2DKey) {
                dao = new ScanResult2DDAO();
            }
            else if (abstractKey instanceof ActuatorKey) {
                dao = new ActuatorImageDAO(((ActuatorKey) abstractKey).getActuator());
            }
            else if (abstractKey instanceof SensorKey) {
                dao = new SensorImageDAO(((SensorKey) abstractKey).getSensor());
            }
            numberImageDAOCache.register(abstractKey, dao);
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.client.comete.dao.ActuatorImageDAO

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.