Package org.auraframework.impl.root.component

Examples of org.auraframework.impl.root.component.ComponentImpl


        switch (defType) {
        case APPLICATION:
            return (T) new ApplicationImpl((DefDescriptor<ApplicationDef>) descriptor, attributes);
        case COMPONENT:
            return (T) new ComponentImpl((DefDescriptor<ComponentDef>) descriptor, attributes);
        case ACTION:
            AuraContext context = Aura.getContextService().getCurrentContext();
            context.pushCallingDescriptor(descriptor);
            try {
                ControllerDef controllerDef = ((SubDefDescriptor<ActionDef, ControllerDef>) descriptor)
View Full Code Here

TOP

Related Classes of org.auraframework.impl.root.component.ComponentImpl

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.