Examples of popInstance()


Examples of org.auraframework.instance.InstanceStack.popInstance()

            throw are;
        } catch(Exception e){
            throw makeException(e.getMessage(),e,this.modelDef);
        }
        iStack.clearAttributeName("m");
        iStack.popInstance(this);
    }

    @Override
    public DefDescriptor<ModelDef> getDescriptor() {
        return modelDef.getDescriptor();
View Full Code Here

Examples of org.auraframework.instance.InstanceStack.popInstance()

                    if (indexVar != null) {
                        providers.put(indexVar, i);
                    }
                    components.addAll(template.newInstance(atts.getValueProvider(), providers));
                    iStack.clearAttributeName("body");
                    iStack.popInstance(component);
                    iStack.clearAttributeIndex(i);
                }
                iStack.clearAttributeName("body");
            }
        }
View Full Code Here

Examples of org.auraframework.instance.InstanceStack.popInstance()

      iStack.pushInstance(this, eventDefDescriptor);
        this.path = iStack.getPath();
        this.eventDefDescriptor = eventDefDescriptor;
        this.attributeSet = new AttributeSetImpl(eventDefDescriptor, valueProvider, this);
        this.attributeSet.set(attributes);
        iStack.popInstance(this);
    }

    public EventImpl(DefDescriptor<EventDef> eventDefDescriptor, Map<String, Object> attributes)
            throws QuickFixException {
        this(eventDefDescriptor, attributes, null);
View Full Code Here

Examples of org.auraframework.instance.InstanceStack.popInstance()

        this.path = iStack.getPath();
        for (JavascriptValueDef member : this.modelDef.getAllMembers()) {
            bean.put(member.getName(), clone(member.getDefaultValue()));
        }
        iStack.clearAttributeName("m");
        iStack.popInstance(this);
    }

    @SuppressWarnings("unchecked")
    private Object clone(Object val) {
        if (val == null) {
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.