Package org.apache.tapestry.runtime

Examples of org.apache.tapestry.runtime.ComponentEvent


        ComponentPageElement component = this;
        String componentId = "";

        while (component != null)
        {
            ComponentEvent event = new ComponentEventImpl(eventType, componentId, context, handler,
                    _typeCoercer);

            result |= component.handleEvent(event);

            if (event.isAborted()) return result;

            // On each bubble up, make the event appear to come from the previous component
            // in which the event was triggered.

            componentId = component.getId();
View Full Code Here

TOP

Related Classes of org.apache.tapestry.runtime.ComponentEvent

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.