Is it possible to separate the getter setters into an aspect ?
I tried to use static aspect Pmpl to introduce the getter setters but
they can't access the variables defined in the main class.
Something like
public class MyTest() {
String data1;
}
public aspect MyTestBeanSupport {
public void setData1(String data) {
this.data1 = data1;
}
public Strng getData1() {
return data1;;
}
}
_______________________________________________
aspectj-users mailing list
[email protected]
https://dev.eclipse.org/mailman/listinfo/aspectj-users