Examples of AWElement


Examples of ariba.ui.aribaweb.core.AWElement

    }

    private AWComponentReference[] extractTabsArray ()
    {
        AWComponentReference[] tabsArray = null;
        AWElement contentElement = componentReference().contentElement();
        if (contentElement instanceof AWTemplate) {
            AWTemplate contentTemplate = (AWTemplate)contentElement;
            tabsArray = (AWComponentReference[])contentTemplate.extractElementsOfClass(AWComponentReference.class);
        }
        else if (contentElement instanceof AWComponentReference) {
View Full Code Here

Examples of ariba.ui.aribaweb.core.AWElement

    }

    private void initElements ()
    {
        if (!_initialized) {
            AWElement contentElement = componentReference().contentElement();
            if (contentElement != null) {
                if (contentElement instanceof AWTemplate) {
                    AWTemplate elementsTemplate = (AWTemplate)contentElement;
                    AWCycleable[] elementArray = elementsTemplate.elementArray();
                    int elementCount = elementArray.length;
                    for (int index = 0; index < elementCount; index++) {
                        AWElement currentElement = (AWElement)elementArray[index];
                        if ((currentElement != null)) {
                            if (currentElement instanceof ToggleBoxElement) {
                                ((ToggleBoxElement)currentElement).initializeElement(this);
                            }
                        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.