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

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


                }
                viewId = ((EndState) state).getViewId();
                redirect = ((EndState) state).isRedirect();
                break;
            } else if (state instanceof SubdialogState) {
                SubdialogState sstate = (SubdialogState) state;
                if (log().isTraceEnabled()) {
                    log().trace("-->SubdialogState(dialogName="
                              + sstate.getDialogName() + ")");
                }
                Dialog subdialog = (Dialog) dialogs(context).get(sstate.getDialogName());
                if (subdialog == null) {
                    throw new IllegalStateException("Cannot find dialog definition '"
                      + sstate.getDialogName() + "'");
                }
                start(subdialog);
                position = peek();
                state = position.getState();
                continue;
View Full Code Here

TOP

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

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.