Re: How to super-source a single method in a JRE emulated class?

2014-02-28 Thread Ed Bras
Clear, thanks. @Jens -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

Re: How to super-source a single method in a JRE emulated class?

2014-02-28 Thread Jens
You have to copy the whole class because you will replace the GWT emulated file when putting the same file into your project's super source path. Or create a fork of GWT and apply custom patches to it (thats what we do, rebasing our patches onto GWT trunk) and depending on the patch contribute

How to super-source a single method in a JRE emulated class?

2014-02-28 Thread Ed
How is it possible to emulate a single JRE method, in my case: Character.isWhiteSpace()? If I try this I get all kind of AST compiler errors (null pointer exception): A new empty Character.java file in my super-source dir with only the isWhiteSpace() method. It works if I copy the whole GWT JRE