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

Examples of fr.soleil.lib.flyscan.model.parsing.configuration.fsobject.actor.StepByStepActuator


                            }
                        } else if (currentSection instanceof ActorSection) {
                            if (name.equals(ParsingUtil.CONTEXT_MONITOR)) {
                                currentObject = new ContextMonitor(currentSection);
                            } else if (name.equals(ParsingUtil.ACTUATOR)) {
                                currentObject = new StepByStepActuator(currentSection);
                            } else if (name.equals(ParsingUtil.CONTINUOUS_ACTUATOR)) {
                                currentObject = new ContinuousActuator(currentSection);
                            }
//                        else if (name.equals(ParsingUtil.CUSTOM_ACTUATOR)) {
//                            currentObject = new CustomActuator(currentSection);
View Full Code Here

TOP

Related Classes of fr.soleil.lib.flyscan.model.parsing.configuration.fsobject.actor.StepByStepActuator

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.