blob: 14a589796f5d67d60c56c6bb6d42439e197e5cf5 [file] [log] [blame]
package aspectPath;
public aspect VariableAspect {
before() : execution(public static void *..fromVariable(String[])) {
System.out.println("from variable aspect");
}
}