can't seem to find joinpoints
Whenver I invoke the "Find joinpoint indentified by pointcut" I get
1. A dialog entitled "Looking for applications of pointcut(TODO)..."
- The dialog says something like "preparing declarations...".
This seems to be done /every/ time this action is invoked.
2. After no joinpoints are identified, I get an info dialog saying
"No applications(TODO) found".
Below is the class and aspect. What might be wrong?
-
package trading.orders;
public class Order {
print int Money price;
public void setPrice(Money price) {this.price = price};
}
--
package trading;
public aspect DomainDependencies {
pointcut testCalls() :
call(public void trading.orders.Order.setPrice(Money));
}
-
Please sign in to leave a comment.