Package org.jboss.weld.bean.builtin

Examples of org.jboss.weld.bean.builtin.ExtensionBean


                    .getClass());

            EnhancedAnnotatedType<Extension> enchancedAnnotatedType = getEnhancedAnnotatedType(classTransformer, extension, beanDeployment);

            if (enchancedAnnotatedType != null) {
                ExtensionBean bean = new ExtensionBean(beanDeployment.getBeanManager(), enchancedAnnotatedType, extension);
                Set<ObserverInitializationContext<?, ?>> observerMethodInitializers = new HashSet<ObserverInitializationContext<?, ?>>();
                createObserverMethods(bean, beanDeployment.getBeanManager(), enchancedAnnotatedType, observerMethodInitializers);
                beanDeployment.getBeanManager().addBean(bean);
                beanDeployment.getBeanDeployer().addExtension(bean);
                for (ObserverInitializationContext<?, ?> observerMethodInitializer : observerMethodInitializers) {
View Full Code Here

TOP

Related Classes of org.jboss.weld.bean.builtin.ExtensionBean

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.