Package de.caterdev.modelling.process.bpmn

Examples of de.caterdev.modelling.process.bpmn.Activity


    private IAssociation ab, bc, cd;
   
    @Before
    public void setUp() throws Exception
    {
        a = new Activity("A");
        b = new Activity("B");
        c = new Activity("C");
        d = new Activity("D");
        ab = new DirectedAssociation(a, b);
        bc = new DirectedAssociation(b, c);
        cd = new DirectedAssociation(c, d);
       
        model = new BPMNModel();
View Full Code Here

TOP

Related Classes of de.caterdev.modelling.process.bpmn.Activity

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.