Package org.gwtoolbox.ioc.core.client.annotation

Examples of org.gwtoolbox.ioc.core.client.annotation.Processor


                continue;
            }
            if (logger.debugEnabled()) {
                logger.debug("Found '" + annotation.annotationType().getName() + "' processor annotation");
            }
            Processor processorAnnotation = annotation.annotationType().getAnnotation(Processor.class);
            ComponentContainerProcessor processor = loadAndInstantiateProcessor(processorAnnotation.value());
            if (EasyTreeLoggerAware.class.isInstance(processor)) {
                ((EasyTreeLoggerAware)processor).setLogger(logger);
            }
            processor.init(annotation, applicationContextType, generatorContext);
            processors.add(processor);
View Full Code Here

TOP

Related Classes of org.gwtoolbox.ioc.core.client.annotation.Processor

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.