Package org.jboss.kernel.plugins.deployment.xml

Source Code of org.jboss.kernel.plugins.deployment.xml.BeanFactoryPropertyInterceptor

/*    */ package org.jboss.kernel.plugins.deployment.xml;
/*    */
/*    */ import javax.xml.namespace.QName;
/*    */ import org.jboss.beans.metadata.plugins.AbstractPropertyMetaData;
/*    */ import org.jboss.beans.metadata.plugins.factory.GenericBeanFactoryMetaData;
/*    */ import org.jboss.xb.binding.sunday.unmarshalling.DefaultElementInterceptor;
/*    */
/*    */ public class BeanFactoryPropertyInterceptor extends DefaultElementInterceptor
/*    */ {
/* 39 */   public static final BeanFactoryPropertyInterceptor INTERCEPTOR = new BeanFactoryPropertyInterceptor();
/*    */
/*    */   public void add(Object parent, Object child, QName name)
/*    */   {
/* 43 */     GenericBeanFactoryMetaData bean = (GenericBeanFactoryMetaData)parent;
/* 44 */     AbstractPropertyMetaData property = (AbstractPropertyMetaData)child;
/* 45 */     bean.addBeanProperty(property);
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.kernel.plugins.deployment.xml.BeanFactoryPropertyInterceptor
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.kernel.plugins.deployment.xml.BeanFactoryPropertyInterceptor

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.