Examples of InstanceStack


Examples of org.auraframework.instance.InstanceStack

    @Override
    public DefDescriptor<?> getCurrentDescriptor() {
        DefDescriptor<?> caller = getCurrentCallingDescriptor();
        if (caller == null) {
            InstanceStack istack = getInstanceStack();
            Instance<?> instance = istack.peek();
            if (instance != null) {
                caller = instance.getDescriptor();
            }
        }
View Full Code Here

Examples of org.auraframework.instance.InstanceStack

        return caller;
    }

    @Override
    public List<String> createComponentStack() {
        InstanceStack istack = getInstanceStack();
        List<String> info = null;
        if (istack != null) {
            info = istack.getStackInfo();
            if (info.size() == 0) {
                info = null;
            }
        }
        return info;
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.