Hello, I was wondering if gwt supports my own created annotations.
More specifically, let's say i want to log a message whenever an RPC
call is made (a call to MyServiceAsync interface). But i don't want to
create a wrapper like
WrapperMyService {
myMethod(..., callback) {
Logger.log(msg);
myServAsync.myMethod(..., callback);
}
}
So can I create an annotation so a specified method is always called
when myMethod() on the async interface is called ? (can I annotatate
methods inside the async interf?)
If not, is there a nicer approach ?
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.