Package org.auraframework.impl.root.event

Examples of org.auraframework.impl.root.event.EventImpl


                return (T) controllerDef.createAction(descriptor.getName(), attributes);
            } finally {
                context.popCallingDescriptor();
            }
        case EVENT:
            return (T) new EventImpl((DefDescriptor<EventDef>) descriptor, attributes);
        default:
            throw new AuraRuntimeException(String.format("Instances of %s cannot be created.", defType));
        }
    }
View Full Code Here

TOP

Related Classes of org.auraframework.impl.root.event.EventImpl

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.