Package ariba.ui.wizard.meta

Examples of ariba.ui.wizard.meta.WizardActionMeta


        _actions.put(cancel.getName(), cancel);
        _actions.put(refresh.getName(), refresh);

        Iterator actionMetas = _meta.actions();
        while (actionMetas.hasNext()) {
            WizardActionMeta actionMeta = (WizardActionMeta)actionMetas.next();
            WizardAction action = new WizardAction(actionMeta, this);
            _actions.put(action.getName(), action);
        }
    }
View Full Code Here


            // add the actions specified in the meta for this frame
            // (this happens for both dialog and non-dialog frames)
        Iterator actionEnum = _meta.actions();
        while (actionEnum.hasNext()) {
            WizardActionMeta actionMeta = (WizardActionMeta)actionEnum.next();
            WizardAction action = _wizard.getActionWithName(actionMeta.name());
            if (action == null) {
                Assert.that(false, UnknownActionMsg,
                                    actionMeta.name(), _meta.name());
            }
            ListUtil.addElementIfAbsent(actionList, action);
        }

            // exit is the last action for non-dialog frames
View Full Code Here

     */
    public WizardAction (Wizard wizard,
                         String name, String label, String button,
                         String hintKey, boolean ignoreValidation)
    {
        this (new WizardActionMeta (name, label, button, hintKey, ignoreValidation),
                wizard, true);
    }
View Full Code Here

TOP

Related Classes of ariba.ui.wizard.meta.WizardActionMeta

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.