Package org.auraframework.system

Examples of org.auraframework.system.AuraContext.addLoaded()


        Map<DefDescriptor<?>, String> loaded = context.getLoaded();
        assertNull("Parent should not be loaded initially", loaded.get(cmpDesc));
        assertNull("Dependency should not be loaded initially", loaded.get(depDesc));

        context.addLoaded(cmpDesc, uid);
        loaded = context.getLoaded();
        assertEquals("Parent was not added", uid, loaded.get(cmpDesc));
        assertNull("Dependency should not have been added", loaded.get(depDesc));

        Aura.getDefinitionService().updateLoaded(cmpDesc);
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.