Package transientlibs.bindedobjects.core

Examples of transientlibs.bindedobjects.core.Activator


    }


    public void addBranchDetonator (int toBranch) {

        add(new Activator(Activator.branchActivator, toBranch, true));
    }
View Full Code Here


    public void addStoryDetonator (int toStory) {

        if (toStory == -1) {Log.error("Warning, null story received");}

        add(new Activator(Activator.storyActivator, toStory, true));
    }
View Full Code Here

    public void addStateTransition (int toState) {
        //ActList.lastActList = this;

        //Activator.addStateTransition (toState);

        add(new Activator(Activator.stateTransitionActivator, toState, true));
    }
View Full Code Here

TOP

Related Classes of transientlibs.bindedobjects.core.Activator

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.