Package ariba.ui.aribaweb.core

Examples of ariba.ui.aribaweb.core.AWBindable


    }

    protected AWBindable _createComponentReference (String componentName, AWComponent component,
                                                    AWApplication application)
    {
        AWBindable element = super._createComponentReference(componentName, component, application);

        String wrapperName = componentName(component, "wrapperComponent");
        if (wrapperName != null) {
            Map wrapperBindings = addBindingsForNewReference(component, MapUtil.map(),
                                                    (Map)properties(component).get("wrapperBindings"));
            AWBindable wrapperElement = createElement(wrapperName, component, application, wrapperBindings);
            Assert.that((wrapperElement instanceof AWElementContaining),
                    "Wrapper component not instance of AWElementContaining: %s", wrapperName);
            ((AWElementContaining)wrapperElement).add(element);
            element = wrapperElement;
        }
View Full Code Here

TOP

Related Classes of ariba.ui.aribaweb.core.AWBindable

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.