crosscutList.add(crosscut);
List tuples = aspect.getAspectManager().getAspectManager().queryCrosscuts(crosscutList, QueryManager.SELECT_ALL,
QueryManager.GROUP_BY_JOINPOINT);
JoinPointNode[] result = new JoinPointNode[tuples.size()];
for (int i = 0; i < result.length; i++) {
JoinPointRequestSurrogate joinPoint = ((Tuple) tuples.get(i)).getRequestSurrogate();
result[i] = new JoinPointNode(this, joinPoint);
}
return result;
} catch (UnreachableException e) {
return null;