T
Timasmith
Hi,
One thing that would be wonderful is if I could add an annotation say
@logthis
public void doSomething() {
int i=0;
i=10;
}
which inserted code into the beginning and end of the method such as
public void doSomething() {
startLogging("doSomething");
int i=0;
i=10;
stopLoggin("doSomething";
}
Do annotations come close to providing that?
thanks
One thing that would be wonderful is if I could add an annotation say
@logthis
public void doSomething() {
int i=0;
i=10;
}
which inserted code into the beginning and end of the method such as
public void doSomething() {
startLogging("doSomething");
int i=0;
i=10;
stopLoggin("doSomething";
}
Do annotations come close to providing that?
thanks