Example #1
0
 public AndPointcut(Pointcut left, Pointcut right) {
   super();
   this.left = left;
   this.right = right;
   this.pointcutKind = AND;
   setLocation(left.getSourceContext(), left.getStart(), right.getEnd());
   couldMatchKinds = left.couldMatchKinds() & right.couldMatchKinds();
 }