Package org.auraframework.impl.root

Examples of org.auraframework.impl.root.AttributeSetImpl


        LoggingService loggingService = Aura.getLoggingService();
        loggingService.startTimer(LoggingService.TIMER_COMPONENT_CREATION);
        try {
            this.globalId = getNextGlobalId();

            this.attributeSet = new AttributeSetImpl(desc, attributeValueProvider, this);

            if (valueProviders != null) {
                this.valueProviders.putAll(valueProviders);
            }
View Full Code Here


            BaseComponent<?, ?> valueProvider) throws QuickFixException {
      InstanceStack iStack = Aura.getContextService().getCurrentContext().getInstanceStack();
      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);
    }
View Full Code Here

TOP

Related Classes of org.auraframework.impl.root.AttributeSetImpl

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.