up vote 3 down vote favorite
share [g+] share [fb]

I have a class that I want to include in a GWT module. Unfortunately, it has a method that has functionality unsupported by GWT (it uses Class.isInstance in case you're curious). I do not use this method in my GWT application, but other non-GWT apps use this method, so I cannot simply remove it. Is there a way to exclude this method in my module definition? Perhaps an annotation on the method can do this?

link|improve this question

59% accept rate
feedback

2 Answers

up vote 3 down vote accepted

There's no functionality in the GWT compiler that lets you do this. It has been discussed in details on the GWT forums, but they decided not to implement it for some very good reasons.

Your only option (since you can't modify the object to remove that method) is to create a transfer object that you use instead of the object that doesn't compile under GWT.

link|improve this answer
Yeah, this seems to be the case. I ended up creating this transfer object. Thanks for the prompt response. – P4ndaman Jul 2 '09 at 14:53
It's kind of funny how GWT can support a subset of functions in a library class, but users cannot do this for classes of their own. – P4ndaman Jul 2 '09 at 14:55
feedback

Another option is to use super-source. You can create a duplicate of your class. Such a class would be an exact copy minus the methods you wish to exclude. Then add the super-source directive to include that duplicate class.

The downside to this is that you will violate the principle of don't repeat yourself (DRY). Also it is important to realize that in hosted mode, the actual class will be called rather than the super-source.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.