Package org.auraframework.impl.javascript.parser.handler

Examples of org.auraframework.impl.javascript.parser.handler.JavascriptControllerDefHandler


    @SuppressWarnings("unchecked")
    @Override
    public <D extends Definition> D parse(DefDescriptor<D> descriptor, Source<?> source) throws QuickFixException {
        switch (descriptor.getDefType()) {
        case CONTROLLER:
            return (D) new JavascriptControllerDefHandler((DefDescriptor<ControllerDef>) descriptor, source)
                    .getDefinition();
        case RENDERER:
            return (D) new JavascriptRendererDefHandler((DefDescriptor<RendererDef>) descriptor, source)
                    .getDefinition();
        case HELPER:
View Full Code Here

TOP

Related Classes of org.auraframework.impl.javascript.parser.handler.JavascriptControllerDefHandler

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.