Package nexj.core.meta

Examples of nexj.core.meta.AspectHelper


   /**
    * @see nexj.core.meta.Aspect#addTo(nexj.core.meta.Pointcut)
    */
   public void addTo(Pointcut pointcut)
   {
      AspectHelper helper = m_aspectHelper;

      if (helper == null && m_nType == ASPECT)
      {
         helper = new TableAspectHelper(this);
      }

      if (helper != null)
      {
         helper.addTo(pointcut);
      }
   }
View Full Code Here


   /**
    * @see nexj.core.meta.Aspect#addTo(nexj.core.meta.Pointcut)
    */
   public void addTo(Pointcut pointcut)
   {
      AspectHelper helper = m_aspectHelper;

      if (helper == null && m_nType == ASPECT)
      {
         helper = new IndexAspectHelper(this);
      }

      if (helper != null)
      {
         helper.addTo(pointcut);
      }
   }
View Full Code Here

TOP

Related Classes of nexj.core.meta.AspectHelper

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.