Package org.amplafi.flow

Examples of org.amplafi.flow.FlowActivity.saveChanges()


        LapTimer.sLap(this.getActiveFlowLabel()," beginning saveChanges()");
        for (int i = 0; i < this.size(); i++) {
            FlowActivity flowActivity = getActivity(i);
            FlowValidationResult flowActivityValidationResult  = flowActivity.getFlowValidationResult(FlowActivityPhase.saveChanges, FlowStepDirection.forward);
            FlowValidationException.valid(flowActivityValidationResult);
            flowActivity.saveChanges();
            // activity.refresh(); -- commented out because saves default values back to the flowState
            LapTimer.sLap(flowActivity.getFlowPropertyProviderFullName(), ".saveChanges() completed");
        }
        LapTimer.sLap(this.getActiveFlowLabel()," end saveChanges()");
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.