Sign in
eclipse
/
ajdt
/
org.eclipse.ajdt
/
f54d1daee7be5b78ea33e2dbda72558eeea71ac6
/
.
/
org.eclipse.ajdt.ui.tests
/
workspace
/
PathTesting-VariableOnAspectPath
/
src
/
aspectPath
/
VariableAspect.java
blob: 14a589796f5d67d60c56c6bb6d42439e197e5cf5 [
file
] [
log
] [
blame
]
package
aspectPath
;
public
aspect
VariableAspect
{
before
()
:
execution
(
public
static
void
*..
fromVariable
(
String
[]))
{
System
.
out
.
println
(
"from variable aspect"
);
}
}