Package org.jboss.aop.pointcut

Examples of org.jboss.aop.pointcut.PointcutStats


      {
         declares.put(declare.getName(), declare);
      }
      if (declare.isPointcut())
      {
         PointcutStats stats;
         stats = new PointcutStats(declare.getAst(), manager);
         stats.matches();
         updateStats(stats);
      }
   }
View Full Code Here


*/
public class BindingClassifier
{
   public static boolean isExecution(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isExecution();
      }
      return false;
   }
View Full Code Here

      return false;
   }

   public static boolean isMethodExecution(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isMethodExecution();
      }
      return false;
   }
View Full Code Here

      return false;
   }

   public static boolean isConstructorExecution(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isConstructorExecution();
      }
      return false;
   }
View Full Code Here

      return false;
   }

   public static boolean isConstruction(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isConstruction();
      }
      return false;
   }
View Full Code Here

      return false;
   }

   public static boolean isCall(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isCall();
      }
      return false;
   }
View Full Code Here

      return false;
   }
  
   public static boolean isMethodCall(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isMethodCall();
      }
      return false;
   }
View Full Code Here

      return false;
   }

   public static boolean isConstructorCall(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isConstructorCall();
      }
      return false;
   }
View Full Code Here

      return false;
   }

   public static boolean isWithin(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isWithin();
      }
      return false;
   }
View Full Code Here

      return false;
   }

   public static boolean isGet(AdviceBinding binding)
   {
      PointcutStats stats = getPointcutStats(binding);
      if (stats != null)
      {
         return stats.isGet();
      }
      return false;
   }
View Full Code Here

TOP

Related Classes of org.jboss.aop.pointcut.PointcutStats

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.