RE: Translating already compiled Java?

2010-09-09 Thread Armishev, Sergey
@googlegroups.com [mailto:google-web-tool...@googlegroups.com] On Behalf Of Gary Madden Sent: Wednesday, September 08, 2010 5:56 AM To: Google Web Toolkit Subject: Translating already compiled Java? Hello, Sorry if this is a silly question but I was wondering whether it's possible to get the GWT compiler

Re: Translating already compiled Java?

2010-09-09 Thread lineman78
I have been battling this issue for a while and the solution really depends on your architecture. The question is are they truly POJOs or do they have JAXB annotations? If they have JAXB annotations GWT will blow up, if not you can trick the GWT compiler into letting you use an external library,

Translating already compiled Java?

2010-09-08 Thread Gary Madden
Hello, Sorry if this is a silly question but I was wondering whether it's possible to get the GWT compiler to translate already compiled Java code into JavaScript? I know that you can specify Java source code to translate using the source elements in the XML module file. The reason is, I have a

Re: Translating already compiled Java?

2010-09-08 Thread dolcra...@gmail.com
I don't think it can, although if you can get the wsdl tool to include the source and a module xml (maybe during your build process) then it could access the jar appropriately, but the source would need to be there along with a module xml (you know to exclude non translatable code). On Sep 8,