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?
|
feedback
|
|
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. | |||||
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. | |||
|
feedback
|