Package org.apache.shale.dialog.basic.model

Examples of org.apache.shale.dialog.basic.model.ActionState


        // Advance through states until we again encounter the
        // need to render a view state
        while (true) {

            if (state instanceof ActionState) {
                ActionState astate = (ActionState) state;
                if (log().isTraceEnabled()) {
                    log().trace("-->ActionState(method=" + astate.getMethod() + ")");
                }
                try {
                    MethodBinding mb = context.getApplication().
                      createMethodBinding(astate.getMethod(), ACTION_STATE_SIGNATURE);
                    outcome = (String) mb.invoke(context, ACTION_STATE_PARAMETERS);
                } catch (Exception e) {
                    fireOnException(e);
                }
                transition(position, outcome);
View Full Code Here

TOP

Related Classes of org.apache.shale.dialog.basic.model.ActionState

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.