Package org.jboss.aop.microcontainer.beans.beanmetadatafactory

Examples of org.jboss.aop.microcontainer.beans.beanmetadatafactory.IntroductionBeanMetaDataFactory


/*      */   {
/* 1337 */     public static final IntroductionMixinInterceptor INTERCEPTOR = new IntroductionMixinInterceptor();
/*      */
/*      */     public void add(Object parent, Object child, QName name)
/*      */     {
/* 1342 */       IntroductionBeanMetaDataFactory intro = (IntroductionBeanMetaDataFactory)parent;
/* 1343 */       intro.addMixinEntry((AbstractBeanMetaData)child);
/*      */     }
View Full Code Here


/*      */   {
/* 1325 */     public static final IntroductionInterfacesInterceptor INTERCEPTOR = new IntroductionInterfacesInterceptor();
/*      */
/*      */     public void add(Object parent, Object child, QName name)
/*      */     {
/* 1330 */       IntroductionBeanMetaDataFactory intro = (IntroductionBeanMetaDataFactory)parent;
/* 1331 */       intro.setInterfaces(((StringBuffer)child).toString());
/*      */     }
View Full Code Here

/*  756 */       super();
/*      */     }
/*      */
/*      */     public Object startElement(Object parent, QName name, ElementBinding element)
/*      */     {
/*  763 */       return new IntroductionBeanMetaDataFactory();
/*      */     }
View Full Code Here

/*      */
/*      */     public void attributes(Object o, QName elementName, ElementBinding element, Attributes attrs, NamespaceContext nsCtx)
/*      */     {
/*  769 */       super.attributes(o, elementName, element, attrs, nsCtx);
/*      */
/*  771 */       IntroductionBeanMetaDataFactory factory = (IntroductionBeanMetaDataFactory)o;
/*  772 */       for (int i = 0; i < attrs.getLength(); i++)
/*      */       {
/*  774 */         String localName = attrs.getLocalName(i);
/*  775 */         if ("expr".equals(localName))
/*      */         {
/*  777 */           factory.setExpr(attrs.getValue(i));
/*      */         } else {
/*  779 */           if (!"class".equals(localName))
/*      */             continue;
/*  781 */           factory.setClazz(attrs.getValue(i));
/*      */         }
/*      */       }
/*      */     }
View Full Code Here

      public static final IntroductionHandler INTRODUCTION_HANDLER = new IntroductionHandler();
     
      @Override
      public Object startElement(Object parent, QName name, ElementBinding element)
      {
         return new IntroductionBeanMetaDataFactory();
      }
View Full Code Here

      @Override
      public void attributes(Object o, QName elementName, ElementBinding element, Attributes attrs, NamespaceContext nsCtx)
      {
         super.attributes(o, elementName, element, attrs, nsCtx);

         IntroductionBeanMetaDataFactory factory = (IntroductionBeanMetaDataFactory) o;
         for (int i = 0; i < attrs.getLength(); ++i)
         {
            String localName = attrs.getLocalName(i);
            if ("expr".equals(localName))
            {
               factory.setExpr(attrs.getValue(i));
            }
            else if ("class".equals(localName))
            {
               factory.setClazz(attrs.getValue(i));
            }
         }
      }
View Full Code Here

      public static final IntroductionInterfacesInterceptor INTERCEPTOR = new IntroductionInterfacesInterceptor();

      @Override
      public void add(Object parent, Object child, QName name)
      {
         IntroductionBeanMetaDataFactory intro = (IntroductionBeanMetaDataFactory)parent;
         intro.setInterfaces(((StringBuffer)child).toString());
      }     
View Full Code Here

      public static final IntroductionMixinInterceptor INTERCEPTOR = new IntroductionMixinInterceptor();

      @Override
      public void add(Object parent, Object child, QName name)
      {
         IntroductionBeanMetaDataFactory intro = (IntroductionBeanMetaDataFactory)parent;
         intro.addMixinEntry((MixinData)child);
      }     
View Full Code Here

      public static final IntroductionInterfacesInterceptor INTERCEPTOR = new IntroductionInterfacesInterceptor();

      @Override
      public void add(Object parent, Object child, QName name)
      {
         IntroductionBeanMetaDataFactory intro = (IntroductionBeanMetaDataFactory)parent;
         intro.setInterfaces(((StringBuffer)child).toString());
      }     
View Full Code Here

      public static final IntroductionMixinInterceptor INTERCEPTOR = new IntroductionMixinInterceptor();

      @Override
      public void add(Object parent, Object child, QName name)
      {
         IntroductionBeanMetaDataFactory intro = (IntroductionBeanMetaDataFactory)parent;
         intro.addMixinEntry((AbstractBeanMetaData)child);
      }     
View Full Code Here

TOP

Related Classes of org.jboss.aop.microcontainer.beans.beanmetadatafactory.IntroductionBeanMetaDataFactory

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.