Package org.amplafi.flow

Examples of org.amplafi.flow.FlowStepDirection


        int originalIndex = getCurrentActivityIndex();
        int next = newActivity;
        FlowActivity currentActivity;
        // if true, currentActivity indicated that it has finished processing and the FlowState should immediately advanced. Used primarily for invisible FlowActivities.
        boolean lastFlowActivityActivateAutoFinished;
        FlowStepDirection flowStepDirection = FlowStepDirection.get(originalIndex, newActivity);
        // based on the flowStepDirection. if true, then there another FlowActivity in the same direction as the current flowActivity
        boolean canContinue;
        do {
            if(this.isActive()) {
                FlowValidationResult flowValidationResult;
View Full Code Here

TOP

Related Classes of org.amplafi.flow.FlowStepDirection

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.