Package org.auraframework.impl.root.application

Examples of org.auraframework.impl.root.application.ApplicationImpl


        DefType defType = descriptor.getDefType();

        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);
View Full Code Here


        Aura.getContextService().assertEstablished();

        DefType defType = definition.getDescriptor().getDefType();
        switch (defType) {
        case APPLICATION:
            return (T) new ApplicationImpl((ApplicationDef) definition, attributes);
        default:
            return (T) getInstance(definition.getDescriptor(), attributes);
        }
    }
View Full Code Here

TOP

Related Classes of org.auraframework.impl.root.application.ApplicationImpl

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.