Package ariba.ui.wizard.meta

Examples of ariba.ui.wizard.meta.WizardFrameMeta


        _stepList = buildSteps(_meta.steps(), this);

            // create dialog frames
        Iterator dialogs = _meta.dialogs();
        while (dialogs.hasNext()) {
            WizardFrameMeta frameMeta = (WizardFrameMeta)dialogs.next();
            WizardFrame frame = new WizardFrame(frameMeta, null, this);
            _frames.put(frame.getName(), frame);
        }

            // create a selections frame if given in the meta
View Full Code Here


        if (delegate != null) {
            delegateName = delegate.getClass().getName();
            _delegate = delegate;
        }
            // not reading from XML, so we must create our own meta
        WizardFrameMeta meta = new WizardFrameMeta(
            wizard.meta(), name, label,
            source, delegateName, null,
            formEncoding, actionNames);
        init(meta, null, wizard);
    }
View Full Code Here

        _parent = parent;
        _meta = meta;

            // if this step's meta-data comes from XML, it will already have a
            // frame and/or a list of sub-steps provided
        WizardFrameMeta frameMeta = _meta.frame();
        if (frameMeta != null) {
            _frame = new WizardFrame(frameMeta, this, wizard);
        }

        List substepsMeta = _meta.substeps();
View Full Code Here

TOP

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

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.