Package ariba.ui.aribaweb.core

Examples of ariba.ui.aribaweb.core.AWBindingApi


        // component is the component which contains the element that has the binding
        // component definition is the definition of the element that has the binding
        int bindingDirection = AWBindingApi.Either;
        AWApi componentApi = componentDefinition.componentApi();
        if (componentApi != null) {
            AWBindingApi bindingApi = componentApi.getBindingApi(bindingName());
            if (bindingApi != null) {
                // catch in case they failed to specify a "direction" on their <binding> tag
                try {
                    bindingDirection = bindingApi.direction();
                } catch (RuntimeException runtimeException) {
                    componentDefinition.addInvalidValueForBinding(validationContext, component, "direction", "binding tag: missing or invalid 'direction' attribute");
                }

            }
View Full Code Here

TOP

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

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.