Package fr.soleil.lib.flyscan.model.parsing.configuration.fsobject.behavior

Examples of fr.soleil.lib.flyscan.model.parsing.configuration.fsobject.behavior.ActuatorBehavior


                        // Handle new object
                        if (currentSection instanceof BehaviorSection) {
                            if (name.equals(ParsingUtil.CONTEXT_MONITOR)) {
                                currentObject = new ContextMonitorBehavior(currentSection);
                            } else if (name.equals(ParsingUtil.ACTUATOR)) {
                                currentObject = new ActuatorBehavior(currentSection);
                            } else if (name.equals(ParsingUtil.SENSOR)) {
                                currentObject = new SensorBehavior(currentSection);
                            } else if (name.equals(ParsingUtil.TIMEBASE)) {
                                currentObject = new TimeBaseBehavior(currentSection);
                            } else if (name.equals(ParsingUtil.HOOK)) {
View Full Code Here

TOP

Related Classes of fr.soleil.lib.flyscan.model.parsing.configuration.fsobject.behavior.ActuatorBehavior

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.