Object[] methodAttributes = Attributes.getAttributes(method);
for (int j = 0; j < methodAttributes.length; j++) {
Object methodAttr = methodAttributes[j];
if (methodAttr instanceof AroundAttribute) {
AroundAttribute aroundAttr = (AroundAttribute)methodAttr;
String name = aroundAttr.getName();
if (name != null) {
adviceName = name;
}
String expression = aroundAttr.getExpression();
createAndAddAroundAdviceDefToAspectDef(
expression, adviceName, aspectName,
aspectClassName, method, methodIndex, aspectDef
);
}