Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-27 Thread Thomas Broyer
On 27 avr, 01:17, Jake wrote: > OK, so I read through the docs you linked to, and also took a look at > the way you were using super-source in Emulation.gwt.xml in gwt-in-the- > air: > > http://code.google.com/p/gwt-in-the-air/source/browse/trunk/super/net... > > I attempted to do the same thin

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-26 Thread Jake
OK, so I read through the docs you linked to, and also took a look at the way you were using super-source in Emulation.gwt.xml in gwt-in-the- air: http://code.google.com/p/gwt-in-the-air/source/browse/trunk/super/net/ltgt/gwt/air/emul/Emulation.gwt.xml I attempted to do the same thing with exten

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-26 Thread Jake
@Thomas: That's probably exactly it. I'll review the documentation and report back on whether I succeeded. Thank you for your help, Jake On Apr 26, 5:56 pm, Thomas Broyer wrote: > On 26 avr, 08:34, Jake wrote: > > > > > Thomas and Vitali, thank you for the expert advice. I believe I'm > > beg

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-26 Thread Jake
I originally thought that I was trying to use the built-in OutputStream, because I believed that it implemented OutputStream.write and the other methods that GWT was having trouble with, but now I understand that the built-in OutputStream does not implement those methods, and thus a custom OutputS

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-26 Thread Thomas Broyer
On 26 avr, 08:34, Jake wrote: > Thomas and Vitali, thank you for the expert advice. I believe I'm > beginning to put this problem into perspective. Here is the > OutputStream implementation bundled with this project: > > http://dev.eclipse.org/viewcvs/index.cgi/e4/org.eclipse.e4.swt/bundle... >

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-26 Thread Vitali Lovich
I thought you were trying to use the built-in OutputStream. Are you sure the package name on your class is right? Shouldn't it be gwt.extended.common.java.io? On Sun, Apr 26, 2009 at 2:34 AM, Jake wrote: > > Thomas and Vitali, thank you for the expert advice. I believe I'm > beginning to put t

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-25 Thread Jake
Thomas and Vitali, thank you for the expert advice. I believe I'm beginning to put this problem into perspective. Here is the OutputStream implementation bundled with this project: http://dev.eclipse.org/viewcvs/index.cgi/e4/org.eclipse.e4.swt/bundles/org.eclipse.swt.e4.jcl/src/gwt/extended/commo

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-25 Thread Thomas Broyer
On 25 avr, 16:54, otakuj462 wrote: > Hi, > > I'm quite new to GWT, and I'm trying to diagnose the source of some > compilation errors for an existing open source project that leverages > GWT (incidentally, for my Google Summer of Code project). Without > going into the details of the purpose of

Re: new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-25 Thread Vitali Lovich
OutputStream is in GWT 1.5. OutputStream is an abstract class - are you overriding the methods it throws errors on? eclipse is good about telling you & auto-fixing stuff like that. can you post your implementation of OutputStreamWriter if this isn't the problem? On Sat, Apr 25, 2009 at 10:54 AM

new to GWT, trying to determine the cause of compilation errors for existing software project

2009-04-25 Thread otakuj462
Hi, I'm quite new to GWT, and I'm trying to diagnose the source of some compilation errors for an existing open source project that leverages GWT (incidentally, for my Google Summer of Code project). Without going into the details of the purpose of the application, I was hoping someone could offe