expression, adviceName, aspectName,
aspectClassName, method, methodIndex, aspectDef
);
}
else if (methodAttr instanceof BeforeAttribute) {
BeforeAttribute beforeAttr = (BeforeAttribute)methodAttr;
String name = beforeAttr.getName();
if (name != null) {
adviceName = name;
}
String expression = beforeAttr.getExpression();
createAndAddBeforeAdviceDefToAspectDef(
expression, adviceName, aspectName,
aspectClassName, method, methodIndex, aspectDef
);
}