Package org.jbpm.simulation.impl.simulators

Examples of org.jbpm.simulation.impl.simulators.GatewaySimulator


   
    protected SimulationRegistry() {
        simulators.put(StartNode.class, new StartEventSimulator());
        simulators.put(EndNode.class, new EndEventSimulator());
        simulators.put(HumanTaskNode.class, new HumanTaskActivitySimulator());
        simulators.put(Split.class, new GatewaySimulator());
        simulators.put(Join.class, new GatewaySimulator());
        simulators.put(EventNode.class, new EventSimulator());
    }
View Full Code Here

TOP

Related Classes of org.jbpm.simulation.impl.simulators.GatewaySimulator

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.