Package org.amplafi.flow

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


    @Override
    public void refresh() {
        int activityIndex = flowState.getCurrentActivityIndex();
        FlowActivity flowActivity = getActivity(activityIndex);
        if ( flowActivity != null ) {
            flowActivity.refresh();
        }
    }

    @Override
    public void setFlowState(FlowState state) {
View Full Code Here


    @Override
    public FlowValidationResult passivate(boolean verifyValues, FlowStepDirection flowStepDirection) {
        FlowActivity currentActivity = getCurrentActivity();
        if ( currentActivity != null ) {
            currentActivity.refresh();
            return currentActivity.passivate(verifyValues, flowStepDirection);
        }
        return null;
    }
    /**
 
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.