How to create my own Event for Composite Widgets ?

2009-07-14 Thread Dackiller
Hi all ! I know the current version 1.6 has been chage on Events Handlers, but I don't know how this works ! Any idea or code example ? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit

Re: UIBinder

2009-07-14 Thread Paul Robinson
You're right. I'd assumed it was in the incubator, which it isn't and apparently won't be as it's intended to go straight to trunk. Sorry. http://groups.google.com/group/Google-Web-Toolkit-Contributors/browse_thread/thread/4539b203c2aba4ad brett.wooldridge wrote: Trite answer. It would be a

Re: GWT next release - what/when?

2009-07-14 Thread denis56
Are there a lot of chages one has to make to upgrate from 1.6 to 2.0. I am considering if upgrading from 1.5 to 2.0 / writing straight in 2.0 would be a better option? Could you also please tell what are the approximate timeline of 2.0 release, have not found dates in documentation. thanks On

Re: How to create my own Event for Composite Widgets ?

2009-07-14 Thread Kwhit
java.util is out, HandlerManager and Handlers are in See: http://code.google.com/webtoolkit/tutorials/1.6/manageevents.html It's a change for the better --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

Re: Window.Location.getParameterMap() and serialization

2009-07-14 Thread Gert Scholten
On Jul 14, 12:31 am, Thad thad.humphr...@gmail.com wrote: I see references to problems with serializing Map objects across the RPC layer. From what I read, folks have a lot of trouble with this, but that is should work. Well, it's not working for me. I have an application to which I wish

GWT + Base64 encode Java object on server and decode on client

2009-07-14 Thread mnenchev
Hi, dear members, Is it possible to base64 encode some java object( DTO) on the server and send it to gwt client side, where i need to restore (decode it to the same DTO object)? Here is why i need this: I have a servlet, that sends sends messages to active mq queue. I have gwt client that uses

GWT DialogBox resize problem with IE

2009-07-14 Thread jk
Hi, In my application for delete operation i have two dialog boxes (delete dialog and confirm dialog) with different size and padding. I am facing problem in resizing the confirm dialog. Delete dialog is normally bigger in size than the confirm dialog, but actually i am getting a confirm dialog

Re: How to create my own Event for Composite Widgets ?

2009-07-14 Thread Dalla
I can also recommend you looking at Chris Musings blog entry on event handling, very good examples there that got med started: http://www.itsolut.com/chrismusings/2009/04/28/business-events-with-gwt-16/ --Dalla http://date-time.appspot.com/ --~--~-~--~~~---~--~~

PHP programmer - is GWT for me?

2009-07-14 Thread pappfer
For some reason I couldn't send this reply to my old thread: http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/a4d4175171e28867/3281670077ac0120?lnk=gst So I started this with the same title. Thank you for your replies! I decided to stick with Dojo if I use some animation.

Re: WindowClosingHandler

2009-07-14 Thread NeMeSiS
Ah! That was what I was looking for... thank you very much! NeMeSiS On 13 Jul., 19:41, Fred Sauer fre...@gmail.com wrote: There's also a close handler which is called if the browser will close. If your app remains active they canceled the close. Fred On Tue, Jul 7, 2009 at 11:42 PM,

Re: ImageBundle use question

2009-07-14 Thread Sean
Ok, thank you! I was wondering if there was something I was missing. On Jul 12, 9:49 pm, Dean S. Jones deansjo...@gmail.com wrote: I had the same issue once, had to do image lookup by name - I ended up creating an Interface with a static reference to the ImageBundle, and then using a GWT

Image Bundle not working in IE

2009-07-14 Thread Sean
I was wondering if IE still doesn't work correctly with Image Bundles. I've seen several older posts (pre 1.6) where people had problems. I now have three ImageBundles that I use, all of them work in Firefox and Chrome but not in IE. It's just a blank gif. where the image should be. Are there

Re: GWT best Practices - JS Library Wrappers Overlay Types

2009-07-14 Thread Eric Ayers
Thanks for the update. On Mon, Jul 13, 2009 at 11:45 PM, Bobbybobbysoa...@gmail.com wrote: Status update: the library is ready, i'm translating the various JS samples into GWT to include in the first download, using the same format as the Google Maps sample app which is contained the in the

Re: Window.Location.getParameterMap() and serialization

2009-07-14 Thread Thad
Thanks, Gert. A deep copy works if implemented as MapString, ListString paramMap = Window.Location.getParameterMap (); HashMapString, ListString map = new HashMapString, ListString (); SetString keys = paramMap.keySet(); for (

Re: GWT next release - what/when?

2009-07-14 Thread Yegor
FYI, GWT 1.7 downloads are already available. This is a minor release, with added support for new browsers (IE8, FF3.5, Safari 4). On Jul 12, 8:56 am, Ainata-Leb kassem.alsayed@gmail.com wrote: What will the next GWT release focus on and what is the expected date for that? Is there a

TextArea, command-v for paste just beeps

2009-07-14 Thread Rob
Hi, I'm on OS X, GWT 1.7.0. I run the following in hosted mode, and when I try to paste or copy text with a key shortcut (ie, Command-V) it just beeps at me. It works okay if I compile and run in Safari. Any ideas? I have a more complex app where even in Safari the TextArea just beeps.

Re: PHP programmer - is GWT for me?

2009-07-14 Thread Dalla
Well, I can give you my thoughts on this :-) I tried using Dojo some time ago, and thought it had some really neat features. Though I didn´t like all having to write java script from scratch... Later I stumbled upon GWT, and I really liked it. Maybe it´s not so strange that I liked it since I

problem with hosted mode - gwt 1.6 code does not execute

2009-07-14 Thread denis56
His, I am having a brain blackout with this hosted mode problem (GWT 1.6 code would not execute). Maybe someone could lead me to an idea to solve it. Currently building a GWT component to a JSF page. It works fine in firefox browser, but I am not able to have hosted mode execute properly. Using

Client did not send 202 bytes as expected

2009-07-14 Thread GWTFan
We are getting the following error randomly while using our application. The same operation works well the next time. [#|2009-07-10T16:30:49.213-0700|SEVERE|sun-appserver9.1| javax.enterprise.system.container.web| _ThreadID=19;_ThreadName=httpSSLWorkerThread-38080-3;_RequestID=a7497db6-

Re: Command Pattern, MVP, EventBus

2009-07-14 Thread Alejandro D. Garin
Hi, I wrote an implementation (first try) based on the Command Pattern and EventBus described in the Ray Google IO Talk. (what I understand from the slides). The working example is trivial but the code uses an event bus (using gwt HandleManager) and the command pattern for the RPC Service.

Re: Command Pattern, MVP, EventBus

2009-07-14 Thread Alejandro D. Garin
I forget to post the link: http://puntosoft2k.appspot.com/Showcase.html#ContactWidgetEventBus Thanks. On Tue, Jul 14, 2009 at 1:43 PM, Alejandro D. Garin aga...@gmail.comwrote: Hi, I wrote an implementation (first try) based on the Command Pattern and EventBus described in the Ray Google

can not build from trunk.

2009-07-14 Thread Jim
I finished the following steps: 1. svn checkout http://google-web-toolkit.googlecode.com/svn/trunk/ google-web-toolkit-read-only 2. run ant from folder google-web-toolkit-read-only because I have already had ant 1.7. I got the following error: [taskdef] Could not load definitions from resource

Re: GWT next release - what/when?

2009-07-14 Thread Gert Scholten
Interresting... I wonder why there wasn't an official announcement of the release in the blog... or did it get released just a few min ago? On Jul 14, 5:25 pm, Yegor yegor.jba...@gmail.com wrote: FYI, GWT 1.7 downloads are already available. This is a minor release, with added support for new

Re: GWT next release - what/when?

2009-07-14 Thread Isaac Truett
It was announced on the GWT contributor list around 9:00 PM EDT last night. A general announcement should be forthcoming in the next day or two. On Tue, Jul 14, 2009 at 2:10 PM, Gert Scholtengsch...@gmail.com wrote: Interresting... I wonder why there wasn't an official announcement of the

Re: can not build from trunk.

2009-07-14 Thread Jim
I find out why. svn checkout http://google-web-toolkit.googlecode.com/svn/trunk/google-web-toolkit-read-only don't download libraries under tools/lib. Jim On Jul 14, 1:55 pm, Jim jim.p...@gmail.com wrote: I finished the following steps: 1. svn

Failed to run OOPHM

2009-07-14 Thread Célio
Today we have switched our gwt 1.6 project to gwt trunk in order to use the OOPHM (we are having serious css issues with mozilla 1.7.13 so we strongly need OOPHM). However there's a problem when running OOPHM, I could not find out the cause. This is what happens: 1ST EXCEPTION 00:00:21.920

Re: ou will not be able to access files from your working directory on the production server

2009-07-14 Thread Rob
Me too. I tried changing the working directory (both on the ant java task, and in the Eclipse run configuration) and then I get a different exception: com.google.apphosting.utils.config.AppEngineConfigException: Supplied application has to contain WEB-INF directory. I'll post again if I

Re: Image Links

2009-07-14 Thread mugathur
Thank you very much. For some reason I read the docs wrong and assumed all the non () constructors were protected, not just the (Element) one. Thanks again. -moo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Gmail / facebook like chat

2009-07-14 Thread KC Jagadeep
H its working successfuly... but not with GWT, i write a code for checking cookee.. and based on the ref i reloaded the same.. but still i am waiting for the same with GWT.. thanks everyone On Jul 12, 10:13 am, Paulo Coutinho pa...@prsolucoes.com wrote: Hi, I have a jquery plugin that i

Local Data Error

2009-07-14 Thread mugathur
I'm experiencing a strange set of behaviors and was wondering if anyone had any ideas. I'm using the datastore to write out some user data. When it's hosted on the actual app engine, everything works just fine. However, when I run in hosted mode on my local machine, the first time a query is

sort incubator PagingScrollTable

2009-07-14 Thread DAVID PACHECO
I need sort PagingScrollTable , who can help me? The version PagingScrollTable of Incubator do not sort --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Position of cursor

2009-07-14 Thread Frank
Hi, I'm trying to get the cursor position on a page made with GWT. But I can't find any function to do this How can I get the x,y coordinates of my pointer. (I want to use this with a popup window) Regards, Frank --~--~-~--~~~---~--~~ You received this message

webAppCreator

2009-07-14 Thread akvarelli
Hi, When I'm trying to launch webAppCreator.cmd by double-clicking, it opens the command prompt for a less than a second and then the window is closed immediately. From webAppCreator properties it can be seen that the file type is Windows NT Command Script. Could this be the reason for the odd

Eclipse Plugin and documentation of older versions of GWT

2009-07-14 Thread Bruno
Hello, Is there a way to install the GWT SDK 1.6 with the latest version of the Google Eclipse Plugin? It suggests only version 1.7 of the SDK, even when Show only the latest version of available software is unticked. There seems to be new GWT releases quite often, and it's not always easy to

Re: declarative way to build/layout UI

2009-07-14 Thread Ainata-Leb
Thanks for the info guys, but with the UIBinder it looks like we are going back to html. What about instantiation/initialization/laying out GWT widgets? Thanks. On Jul 13, 8:50 am, brett.wooldridge brett.wooldri...@gmail.com wrote: I'm waiting for UIBinder as well, but this project seems full

Event handling with activeX

2009-07-14 Thread mistik
Hey all, I have been striving for a solution for this for quite a while and I was now wondering if someone here could help me out... The problem: I need to load an activeX (let's say it's a video player) component and listen for mouse click events. I want to handle events using GWT clickHandler

Is There Any Online Documentation for the Library

2009-07-14 Thread Bharat
Hi Everyone, I am quite new to using GWT and GWT Validation Library(gwt-vl). Can anyone help me out with finding some really good documentation or tutorial for using this library. Its a beautiful library but the lack of detailed documentation and any tutorial is really making my job in getting

Event handling with activeX

2009-07-14 Thread mistik
Hey all, I have been striving for a solution for this for quite a while and I was now wondering if someone here could help me out... The problem: I need to load an activeX (let's say it's a video player) component and listen for mouse click events. I want to handle events using GWT clickHandler

GWT Learner : Design issue question

2009-07-14 Thread prasrob
I'm still in process of learning GWT. So far completed the start up tutorial and was sucessfully able to run sample applications. Now, i'm in process to evaluate what would it need to use GWT in my current struts / JSP /Servlet application. Here is some information about my current application

AppEngine Tutorial

2009-07-14 Thread Coral Lights
http://code.google.com/webtoolkit/tutorials/1.6/appengine.html It looks like this tutorial is missing the action declaring a member variable public class StockWatcher implements EntryPoint { ... private StockServiceAsync stockService; //missing where it is later used by private void

GWT 1.7.0

2009-07-14 Thread ben
I see that it's out for download now. What updates are in that release? I don't see any milestone in the Issues Tab for the release. And I don't seem to see any posts about the new release? --~--~-~--~~~---~--~~ You received this message because you are

Re: GWT 1.7.0

2009-07-14 Thread sideview1
nevermind, I was looking at the main page http://code.google.com/p/google-web-toolkit/ but I found the correct location and here are the release notes: http://code.google.com/webtoolkit/releases/release-notes-1.7.0.html Sorry I'm used to the posts pinned to the top in the forum. On Jul 14,

Re: webAppCreator

2009-07-14 Thread Isaac Truett
That's normal for Windows command or batch files. Unless they have a pause at the end the console will close on completion, success or failure. Just open a command prompt and run the command from there. On Tue, Jul 14, 2009 at 9:59 AM, akvarelliakvare...@gmail.com wrote: Hi, When I'm trying

Hosted mode console log output not scrolling

2009-07-14 Thread waf
Hi there, Is there a way to force the hosted mode console output log to automatically scroll to latest log messages instead of it staying where it was left at last log inspection? -- waf --~--~-~--~~~---~--~~ You received this message because you are subscribed

How to center widgets within a panel

2009-07-14 Thread zorro2b
I am trying to align a button in the center of the west panel of a dock. I am trying to do so by inserting a VerticalPanel in the west panel and setting its vertical alignment to align middle. This has no affect. The button is aligned to the top of the panel. What is the correct way to do this?

Re: How to center widgets within a panel

2009-07-14 Thread brett.wooldridge
Odds are that your VerticalPanel is not occupying the full height of the west component. In the future I recommend using Firebug in Firefox to, for example, examine the VerticalPanel. Try setting the height of the VerticalPanel to 100% -- so that it vertically fills the west component. At that

Re: Is it legal to generate code GWT.create(ABC.class) by Generator?

2009-07-14 Thread Kelvin
Yes, exactly. And I just try it out and it works:) On Jun 19, 4:44 am, Mark Renouf mark.ren...@gmail.com wrote: I think he's asking whether it's supported to have a code generator emit additional GWT.create calls. I believe the answer is yes. Any new deferred binding points will be evaluated

Why ImageBundleGenerator does not optimize the generated icon set?

2009-07-14 Thread Kelvin
I create a SilkImageBundle and put all silk icons library to it. the silk icon library contains 1000 icons and just a few hundreds of them are being used by the application. And I supposed that GWT can optimize the icon set and contains only the icons that being used. However, the generated icon

Pretty simple character encoding question

2009-07-14 Thread markmac
I have a pretty standard Gwt app going on, and I have placed a Spring DispatcherServlet to intercept my RPC calls so that I can do things like commit a Hibernate session, etc... At the moment, Im having a small character encoding issue, where a user submits a Gwt form with a 'special' character

Re: GWT Learner : Design issue question

2009-07-14 Thread brett.wooldridge
From my reading, a straight port of your JSP logic to GWT wouldn't seem buy you very much. But certainly you can build a dynamic UI in GWT. One of the points of AJAX is to avoid page reloads, so here are some things you might consider: 1) For your wizard, keep all the state between steps on

Can GWT do pixel-manipulation?

2009-07-14 Thread 任胜韦
I want to display Algebra Symbol ,many of which are not included by popular fonts. So I have to draw them on real time. Can GWT do pixel-manipulation? and how? or can anybody introduce some ways to do that.( I know some like canvas, but id does;t support IE T_T) --XiaoR

Re: Position of cursor

2009-07-14 Thread Carver
Javascript will only give you a mouse position in response to an event, AFAIK. Of course, events happen all the time (eg~ the mouse moving). So you just need to decide which element in GWT is listening for that event. See all the known objects that have the mouse move handler here:

Re: How to get GWT site indexed?

2009-07-14 Thread brett.wooldridge
In 10 days it should have been crawled. I assume some OTHER page somewhere links to your page? If your page isn't somehow connected to another site, that is connected to another site, that is connected to another site (etc), it will never get crawled. If you just stick a server and a page out

Re: declarative way to build/layout UI

2009-07-14 Thread brett.wooldridge
If that's what you're after, I would suggest looking at Kiyaa. It seems the most robust implementation out there. On Jul 14, 11:28 pm, Ainata-Leb kassem.alsayed@gmail.com wrote: Thanks for the info guys, but with the UIBinder it looks like we are going back to html. What about

Re: declarative way to build/layout UI

2009-07-14 Thread brett.wooldridge
On second reading, what is that UIBinder doesn't do that you want it to do? It can do layout: ui:UiBinder xmlns:ui='urn:ui:com.google.gwt.uibinder' xmlns:g='urn:import:com.google.gwt.user.client.ui' g:HTMLPanel Hello, g:ListBox ui:field='listBox'/. /g:HTMLPanel /ui:UiBinder And

cross domain http response

2009-07-14 Thread Maksim Ustinov
Is there any workaround for http response. I have Servlet hosted on another server for large file upload (GAE does not support files larger than 10 mb) and I really need to get response back from the server with the name of the file and if it was successful uploaded or not. What can I do to get

Re: GWT best Practices - JS Library Wrappers Overlay Types

2009-07-14 Thread Bobby
I'm adding the GData samples here as i go, if you want to see the library in action. http://1.latest.gwt-gdata.appspot.com/v/HelloGData.html Bobby On Jul 14, 9:54 am, Eric Ayers zun...@google.com wrote: Thanks for the update. On Mon, Jul 13, 2009 at 11:45 PM, Bobbybobbysoa...@gmail.com

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread stuckagain
Good morning, Are there any bugs fixed in this release or is it only focusing on supporting the latest browsers ? I guess I will quickly know. David On Jul 14, 3:01 am, Bruce Johnson br...@google.com wrote: Hi everyone, GWT 1.7 is a minor update that adds better support for Internet

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread stuckagain
I checked the issues database. Am I right that everything labeled for milestone 1_6_1 is in this release ? On Jul 14, 8:32 am, stuckagain david.no...@gmail.com wrote: Good morning, Are there any bugs fixed in this release or is it only focusing on supporting the latest browsers ? I guess I

[gwt-contrib] [google-web-toolkit commit] r5730 - revert of 5626

2009-07-14 Thread codesite-noreply
Author: fabb...@google.com Date: Tue Jul 14 07:15:19 2009 New Revision: 5730 Removed: trunk/dev/core/src/com/google/gwt/dev/util/arg/ArgHandlerDisableAssertions.java Modified: trunk/dev/core/src/com/google/gwt/dev/GWTShell.java

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread ma
Hello, I have problems with GWT1.7 and the actual release of the gwt- incubator library (gwt-incubator-march-02-2009.jar). The following compile errors occur in my project: ... [java][ERROR] Errors in 'jar:file:../gwt-incubator-

[gwt-contrib] RR : Emulate JS stack traces (phase 1)

2009-07-14 Thread bobv
Reviewers: scottb, Lex, Message: Review requested. http://gwt-code-reviews.appspot.com/47816/diff/1/4 File dev/core/src/com/google/gwt/dev/jjs/impl/GenerateJavaScriptAST.java (right): http://gwt-code-reviews.appspot.com/47816/diff/1/4#newcode2125 Line 2125:

[gwt-contrib] [google-web-toolkit commit] r5731 - Remove check for strong name header as part of RemoteServiceServlet.processCall() due to ...

2009-07-14 Thread codesite-noreply
Author: b...@google.com Date: Tue Jul 14 09:00:22 2009 New Revision: 5731 Modified: trunk/user/src/com/google/gwt/user/server/rpc/RemoteServiceServlet.java Log: Remove check for strong name header as part of RemoteServiceServlet.processCall() due to reports of this triggering on

[gwt-contrib] A small change in DatetimeFormat comment

2009-07-14 Thread Shanjian Li
Here is the diff. This change is proposed by Tom O'Neill . Alex, can you help submit the change? shanjian --~--~-~--~~~---~--~~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~--~~~~--~~--~--~---

[gwt-contrib] [google-web-toolkit commit] r5733 - HTMLPanel custom tag test is still blowing up IE, reverting it.

2009-07-14 Thread codesite-noreply
Author: rj...@google.com Date: Tue Jul 14 11:06:42 2009 New Revision: 5733 Modified: trunk/user/src/com/google/gwt/user/client/ui/HTMLPanel.java trunk/user/test/com/google/gwt/user/client/ui/HTMLPanelTest.java Log: HTMLPanel custom tag test is still blowing up IE, reverting it.

[gwt-contrib] [google-web-toolkit commit] r5734 - Add support for raw types in non-generic methods/etc.

2009-07-14 Thread codesite-noreply
Author: j...@google.com Date: Tue Jul 14 11:36:36 2009 New Revision: 5734 Modified: changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java Log: Add support for raw types in non-generic methods/etc. Modified:

[gwt-contrib] [google-web-toolkit commit] r5735 - Added javadoc for ResourceFactory.getBundle()'s resourceMap parameter.

2009-07-14 Thread codesite-noreply
Author: sco...@google.com Date: Tue Jul 14 12:57:27 2009 New Revision: 5735 Modified: trunk/user/src/com/google/gwt/i18n/rebind/ResourceFactory.java Log: Added javadoc for ResourceFactory.getBundle()'s resourceMap parameter. Review by: jat Modified:

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread Isaac Truett
I decided to jump on 1.7 this morning. Looks good so far. No compilation problems, no new issues so far, and IE8 behavior much better. Thank you, Bruce, et al. On Mon, Jul 13, 2009 at 9:01 PM, Bruce Johnsonbr...@google.com wrote: Hi everyone, GWT 1.7 is a minor update that adds better

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread Fushion
Same problem here. On Jul 14, 4:45 pm, ma m...@coware.de wrote: Hello, I have problems with GWT1.7 and the actual release of the gwt- incubator library (gwt-incubator-march-02-2009.jar). The following compile errors occur in my project: ...      [java]    [ERROR] Errors in

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread Isaac Truett
Have you tried building incubator from trunk? I'm using more recent incubator code and it compiles for me with GWT 1.7. On Tue, Jul 14, 2009 at 4:37 PM, Fushionmenno.van.gange...@gmail.com wrote: Same problem here. On Jul 14, 4:45 pm, ma m...@coware.de wrote: Hello, I have problems with

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread John Tamplin
On Tue, Jul 14, 2009 at 4:37 PM, Fushion menno.van.gange...@gmail.comwrote: Same problem here. The problem is that it needs an IE8 deferred binding, and that is present in incubator svn (in GlassPanel.gwt.xml). If you can't build incubator from svn, you can duplicate the ie6 line and change

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread Ray Ryan
We'll get a 1.7-compatible incubator jar built ASAP On Tue, Jul 14, 2009 at 2:18 PM, John Tamplin j...@google.com wrote: On Tue, Jul 14, 2009 at 4:37 PM, Fushion menno.van.gange...@gmail.comwrote: Same problem here. The problem is that it needs an IE8 deferred binding, and that is present

[gwt-contrib] Re: GWT 1.7 Now Available

2009-07-14 Thread Ray Ryan
Okay, it's up: http://code.google.com/p/google-web-toolkit-incubator/wiki/Downloads?tm=2 All better? rjrjr On Tue, Jul 14, 2009 at 2:23 PM, Ray Ryan rj...@google.com wrote: We'll get a 1.7-compatible incubator jar built ASAP On Tue, Jul 14, 2009 at 2:18 PM, John Tamplin j...@google.com

[gwt-contrib] [google-web-toolkit commit] r5736 - More fixes of raw types, synthesize access flags for private inner classes.

2009-07-14 Thread codesite-noreply
Author: j...@google.com Date: Tue Jul 14 16:09:16 2009 New Revision: 5736 Modified: changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/TypeOracleMediator.java changes/jat/ihm/dev/core/src/com/google/gwt/dev/javac/asm/CollectClassData.java Log: More fixes of raw types, synthesize