I want to annotate some methods and make generator to change this methods
and add new method for every annotation. Like this

@DoIt
public void methodName(){
..
some work there
..
}

generated to

public void methodName(){
...
some work there
..
generated_methodName();
}

public void generated_methodName(){..}

How could I archive this? Subclass original class, override annotated method
and add new one? But how could I get source content for original method?


-- 
Regards,
Alexander

--

You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.


Reply via email to