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

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


                            } else if (name.equals(ParsingUtil.MONITOR)) {
                                currentObject = new MonitorBehavior(currentSection);
                            }
                        } 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);
                            }
View Full Code Here

TOP

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

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.