Re: layout problems with positioning or aligning content

2010-06-11 Thread Tristan Slominski
I don't understand how UiBinder cannot be used to do what you describe. You may have to create multiple views (for example fileMenuView) that you attach when the user clicks on File in the menu. But that fileMenuView could be fully described in UiBinder. how it is attached probably won't be done

Re: Returning values, next try. Sending was too fast for me

2010-06-11 Thread uwi_u
It's working now! Thank you very much On 9 Jun., 14:36, Stefan Bachert stefanbach...@yahoo.de wrote: Hi, GUIs are asynchronously. You still think synchronously. No change to succeed synchronously. Your GUI continue to run while your service is send. Remove the return int. Put Code to

Re: Does @DefaultMessage and @PluralText really work?

2010-06-11 Thread PEZ
Finally got some traction thanks to the clues I got from Federico Kerek, author of Essential GWT - http://my.safaribooksonline.com/9780321705631 It seems like it is something I don't understand with the default locale mechanism. I haven't figured it out, but it seems that to get plural handling

Application works only in hosted mode

2010-06-11 Thread Stefan Ludwig
Hi, I have a simple application contains a GXT form panel. When I start the app in hosted mode it works fine. But not in normal mode. In Firebug I see, that all files are well loaded (Status 200 OK). When I check the generated HTML with Firbug, I see that the DIV (my GWT container) is empty (in

Re: layout problems with positioning or aligning content

2010-06-11 Thread Magnus
Hi, your example does not work for me. g:VerticalPanel horizontalAlignment=ALIGN_MIDDLE This means AFAIK that the content of the VerticalPanel are aligned within the VerticalPanel, but not the VerticalPanel itself. Also it does not align vertically... Magnus On 11 Jun., 09:40, Tristan

Re: GWT Localistion for Large Enterprise apps

2010-06-11 Thread Nathan Wells
Actually, if it's a concern about bandwidth, it's even more of a moot point than Stefan indicated, since (1) you were going to be putting those labels in regardless of internationalization, and (2) GWT already extracts String constants into a tightly packed bunch of global variables with minified

Re: Does @DefaultMessage and @PluralText really work?

2010-06-11 Thread PEZ
I'm back with more clues. =) I wanted to add some locales to my module. Figured I could get a boiler plate for the properties file if I used the @Generate annotation. I noticed that it created both an _en.properties file and a _default.properties. What's more; the _en file completely lacked the

Re: Does @DefaultMessage and @PluralText really work?

2010-06-11 Thread Thomas Broyer
On 11 juin, 11:05, PEZ p...@pezius.com wrote: Finally got some traction thanks to the clues I got from Federico Kerek, author of Essential GWT -http://my.safaribooksonline.com/9780321705631 It seems like it is something I don't understand with the default locale mechanism. I haven't figured

Re: opening popup menu hides all remaining page content

2010-06-11 Thread Thomas Broyer
On 11 juin, 07:07, Magnus alpineblas...@googlemail.com wrote: Hello, I found a strange problem under IE 7: When I click on a menu item that opens a popup submenu, the whole page content (all widgets including the menubar itself) is hidden and only the popup menu is visible. See

Re: retrieving the size of a panel/widget before it is added

2010-06-11 Thread Thomas Broyer
On 11 juin, 07:53, Magnus alpineblas...@googlemail.com wrote: Hi, when I add a VerticalPanel to the center of a DockLayoutPanel, it will immediately be stretched to the remaining size of its parent. But I would like it to keep its natural size, i. e. the size it needs for its children (and

UIbinder reference?

2010-06-11 Thread Magnus
Hi, I cannot find a reference documentation for the UIBinder XML syntax. I googled all day long, but all that I find are examples, even on code.google.com. E. g. I need the allowed tags and attributes for a Grid structure... Where is the documentation? Thank you Magnus -- You received this

Re: retrieving the size of a panel/widget before it is added

2010-06-11 Thread Magnus
Hi, what makes the difference? Magnus On 11 Jun., 15:12, Thomas Broyer t.bro...@gmail.com wrote: On 11 juin, 07:53, Magnus alpineblas...@googlemail.com wrote: Hi, when I add a VerticalPanel to the center of a DockLayoutPanel, it will immediately be stretched to the remaining size of

Re: GWT and Spring - with Spring Web MVC or without it?

2010-06-11 Thread Richard Allen
There is also the GWT Server Library from the GWT Widget Library project: http://gwt-widget.sourceforge.net/ You should also check out the support for GWT that is now built into Spring Roo. If you already use (or want to use) the technologies that Spring Roo builds in, like JPA, then Roo will get

Re: Page Navigation

2010-06-11 Thread Richard Allen
Sounds like when your entry point loads (that happens on refresh) it needs to check if the user is logged in (check a cookie or make an AJAX request to the server) and then display the appropriate widgets (view). However, I suggest that you make the login page a separate page from the page that

Re: Page Navigation

2010-06-11 Thread Thomas Broyer
On 11 juin, 15:55, Richard Allen richard.l.al...@gmail.com wrote: Sounds like when your entry point loads (that happens on refresh) it needs to check if the user is logged in (check a cookie or make an AJAX request to the server) and then display the appropriate widgets (view). However, I

Re: retrieving the size of a panel/widget before it is added

2010-06-11 Thread Thomas Broyer
On 11 juin, 15:37, Magnus alpineblas...@googlemail.com wrote: Hi, what makes the difference? The intermediate panel would be sized when added to the DockLayoutPanel, not the VerticalPanel that you then put inside, that would be *eventually* resized following the constraints/layout of the

Re: UIbinder reference?

2010-06-11 Thread Thomas Broyer
On 11 juin, 15:26, Magnus alpineblas...@googlemail.com wrote: Hi, I cannot find a reference documentation for the UIBinder XML syntax. I googled all day long, but all that I find are examples, even on code.google.com. E. g. I need the allowed tags and attributes for a Grid structure...

Re: Guice and RpcServlet

2010-06-11 Thread hbf
Googling for DeRPC (and not Direct-Eval RPC) got me what I needed. Here it is, for the sake of completeness: http://groups.google.com/group/google-guice/browse_thread/thread/d958f5a82d45706a/bc6bca85513d9cb3 On May 27, 2:35 pm, hbf kaspar.fisc...@dreizak.com wrote: Hi, I would like to use

Re: No new web application project button

2010-06-11 Thread t3c
Had the same problem with Windows 7. Running eclipse as administrator and then installing the plugin worked for me. On May 29, 7:46 pm, Andrew anyel...@gmail.com wrote: The plugin and the SDKs are installed and Google does not show up in Window-Preferences. I have tried uninstalling and

Final fields and DeRPC

2010-06-11 Thread hbf
Hi, Does the new RPC mechanism, DeRPC, see http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunication.html#DevGuideDeRPC offer serialization of non-static final fields? We have so many immutable classes that use final fields. It would be nice if there were an option to control

Efficient GWT Client-Server Communication methodology

2010-06-11 Thread Anne
Hello, In my project, I need efficient transfer of bulk data from the server to the client. The data will be containing thousands of rows of a database. And I require to populate them very quickly. The project will be implemented in areas with very slow internet connection. I read about the

GWT 2.X No resource found for key

2010-06-11 Thread Francesco
I've developed a GWT app using i18n internationalization. In Host/Dev mode it works fine, but launching GWT compile gives this error: No resource found for key xxx, like below. Compiling module ...rte.RTE Scanning for additional dependencies: file:/home/.../client/i18n/

Re: How to suppress Deprecation warnings

2010-06-11 Thread Nico
Can you please help me how i can suppress these warnings? If you look at the javadoc for com.google.gwt.widgetideas.table.client.overrides.HTMLTable for example, it will tell you to use com.google.gwt.gen2.table.override.client.HTMLTable instead. Replace your inherits in your gwt.xml file(s).

GWT HTTP GET function

2010-06-11 Thread Andy
public void doGet(String myurl) { myurl = URL.encode(myurl); RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, myurl ); try { Request request = builder.sendRequest(null, new RequestCallback() { public void onError(Request request,

Hot Start up looking for GWT Expert to contribute virtually!

2010-06-11 Thread Amelia Recruiter
Hi, My name is Amelia and I am one of the founders of TipMarks. TipMarks could be a great and interesting opportunity for you or someone you may know. We have a number of roles open now, but specifically we are looking for a GWT expert to contribute virtually. I would love to talk to you about

gwt2.0 memory leak

2010-06-11 Thread tarik
I am using GWT2.0, I would like to know how to decrease memory consumption for GWT? I am using Internet explorer 6. Please give me an answer as soon as possible? Thank you. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: Guice and RpcServlet

2010-06-11 Thread hbf
Any ideas? Best, Kaspar On May 27, 2:35 pm, hbf kaspar.fisc...@dreizak.com wrote: Hi, I would like to use the new and experimental [1] Direct-Eval RPC of GWT 2 with server-side Guice. However, I could only find information on configuring Guice and GWT for the old RPC, see [2]. To inject the

GWT very slow on IE

2010-06-11 Thread vinod
Hi My GWT application takes 10 seconds on IE with GWT . without GWT it used to take less than second. 10 times slower with GWT. We are using GWT for first time in our application. And the app is very slow on IE. Business is very unhappy with performance. Can you please help me to bring this

Re: No new web application project button

2010-06-11 Thread t3c
Had the same problem here. Works fine under Linux or WinXP but no luck with Windows 7. Eclipse showed Google Plugin as installed in About Eclipse - Installation Details. Try running eclipse as administrator and then installing google plugin. That did the job for me. On May 29, 7:46 pm, Andrew

Javascript exception while parsing the XML to JSON

2010-06-11 Thread Sudheer
Hi, I am getting a strange javascript exception while parsing the XML string and converting to JSON string. Can I know the reasons for the exception? Catch is same input is working in another environment. Is it something related to environment? input XML is -- Content-Type:

Re: layout problems with positioning or aligning content

2010-06-11 Thread Tristan Slominski
it was just a rough example.. not the exact code here's a production code that centers content in the center of the page vertically and horizontally g:VerticalPanel width=100% height=100% g:Cell horizontalAlignment=ALIGN_CENTER verticalAlignment=ALIGN_MIDDLE g:HorizontalPanel

using gwt for games - svg, canvas or something else?

2010-06-11 Thread Aljosa Mohorovic
i've found several gwt extensions that have svg or canvas support but i have no idea what to use. i'm trying to create simple games (stuff usually produced in flash) so i was wondering if anybody else tried something like that? what would you recommend? Aljosa Mohorovic -- You received this

YouTube API for GWT

2010-06-11 Thread Peter Simun
Did you ever want to use YouTubeAPI in your GWT application and you did not found any acceptable solution? Have a look on gwt-youtube-api project (http://code.google.com/p/gwt- youtube-api/) or try sample YouTube application http://code.google.com/p/gwt-youtube-api/wiki/SampleApplication. Project

java.lang.IllegalArgumentException: Only one CENTER widget may be added

2010-06-11 Thread Kelo
Clicking on my ant's script target name=devmode depends=javac description=Run development mode java failonerror=true fork=true classname=com.google.gwt.dev.DevMode classpath pathelement location=src/ pathelement location=/Galileo/workspace/Mark5/src/ path

Re: YouTube API for GWT

2010-06-11 Thread Giuseppe La Scaleia
Il 11/06/10 17.01, Peter Simun ha scritto: Did you ever want to use YouTubeAPI in your GWT application and you did not found any acceptable solution? Have a look on gwt-youtube-api project (http://code.google.com/p/gwt- youtube-api/) or try sample YouTube application

Re: quirks vs. standard mode

2010-06-11 Thread Daniel Le Clere
That's a valid point I had not considered. I had some reservations about using the HTML 5 tag because I had read that IE 6 had no idea what to do with new doctypes. I did a little further reading, it turns out that the HTML 5 doctype should kick it into strict mode, which is something of an

Re: gwt2.0 memory leak

2010-06-11 Thread Daniel Le Clere
Details? Are you using widgets? An RPC? Some sort of design pattern? Are you using innerHTML placement or are you trying to build your entire layout using javascript generated DOM objects? Are you building new DOM structures inside or outside the body of the document? Do you have a massive table

Modify Java source file at compile time, possible?

2010-06-11 Thread Kevin Qiu
Hi, I know GWT can generate Java source code with deferred binding. But sometimes, I don't want to generate a new implementation, but based on some annotations, I want to have the ability of injecting code at compile time. e.g., with the class below public class Foo { @Log public void bar()

Re: Application works only in hosted mode

2010-06-11 Thread Stefan Bachert
Hi Stefan, this forum is not about GXT. It is about pure GWT. Stefan Bachert http://gwtworld.de On Jun 11, 11:37 am, Stefan Ludwig tapir0...@gmail.com wrote: Hi, I have a simple application contains a GXT form panel. When I start the app in hosted mode it works fine. But not in normal mode.

Re: GWT very slow on IE

2010-06-11 Thread Manoj
Install Speed Tracer and profile your application. HttpWatch, Fiddler, YSlow..there are many tools that can assist you to find out whats going on..or use sysouts in your rpc calls to see if thats what is slowing you down. There is no silver bullet that can make your application faster without

Re: 1 layout - 3 browsers - 3 results?

2010-06-11 Thread Alejandro D. Garin
Hi, I added the menu items you mention and it is working, tested in IE8. On Fri, Jun 11, 2010 at 1:42 AM, Magnus alpineblas...@googlemail.comwrote: Hi, there is a strange problem with the menubar in your example using IE8 (not with FF). When it opens a popup menu, the whole page

Re: Final fields and DeRPC

2010-06-11 Thread mmoossen
+1 regards Michael On Jun 10, 7:58 pm, hbf kaspar.fisc...@dreizak.com wrote: Hi, Does the new RPC mechanism, DeRPC, see  http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunicat... offer serialization of non-static final fields? We have so many immutable classes that use

Re: using gwt for games - svg, canvas or something else?

2010-06-11 Thread mmoossen
hi Aljosa! i have no idea which one is better (svg or canvas) nor which one has better browser support nor which one has better gwt support. i only know this is the most amazing game implementation for a browser i have ever seen: http://code.google.com/p/quake2-gwt-port/ regards Michael On Jun

bikeshed source code

2010-06-11 Thread Jim
I get the latest code from GWT truck. I can not create a working Eclipse project for bikeshed because it is full of many code errors. I would appreciate it if you can share your working source code with us. Jim -- You received this message because you are subscribed to the Google Groups Google

Re: Efficient GWT Client-Server Communication methodology

2010-06-11 Thread bill braasch
Check out the Itemscript libraries. http://code.google.com/p/itemscript/ Itemscript includes a JSON RPC with cross platform Java / GWT libraries. There's also an in memory database you might find useful for managing the client side. Bill -- You received this message because you are subscribed

Re: Hot Start up looking for GWT Expert to contribute virtually!

2010-06-11 Thread Thamizh Arasu
Hi, I am interested to know more about this. How can i contact you? On Jun 11, 2:09 am, Amelia Recruiter ameliarecrui...@gmail.com wrote: Hi, My name is Amelia and I am one of the founders of TipMarks. TipMarks could be a great and interesting opportunity for you or someone you may know. We

Re: GWT HTTP GET function

2010-06-11 Thread Jeff Chimene
On 06/10/2010 08:55 AM, Andy wrote: public void doGet(String myurl) { myurl = URL.encode(myurl); RequestBuilder builder = new RequestBuilder(RequestBuilder.GET, myurl ); try { Request request = builder.sendRequest(null, new RequestCallback() {

Re: GWT very slow on IE

2010-06-11 Thread Prema Monica
How many RPC calls do you have on this page? How is the performance on the other browsers? I believe IE 6 and 7 permit only 2 simultaneous requests. though IE8 permits 6. check out the link below for more details.

Re: Does @DefaultMessage and @PluralText really work?

2010-06-11 Thread PEZ
Indeed, it seems to work as you think it does. I just tried removing the _default.properties file and thing still work. Was that @DefaultLocal(en) all that was lacking to begin with? I'm not even using the set-property-fallback. Thanks for sharing! I was beginning to dispare. /PEZ On Jun 11,

Cross Site XML-HTTP?

2010-06-11 Thread Quu
I want to, inside of my GWT application, load an XML document from a different server then where the base page is from. My page is on server A, and the GWT compiled javascript is on a different server, location B. The XML I am trying to read is at the same location, B, so why can't the JS loaded

Re: Modify Java source file at compile time, possible?

2010-06-11 Thread Olivier Monaco
Hi Kevin, You can rewrite your Foo class as: public class Foo implements MagicClass { @Trace @Secured public void bar() { } } Then, associate a generator for sub-types of MagicClass and use GWT.create to instantiate a new Foo. GWT.create(Foo.class); So your generator will be called.

Re: Modify Java source file at compile time, possible?

2010-06-11 Thread Kevin Qiu
thanks for the reply. the problem is (I should've pointed out) that my Foo class is already managed through dependency injection container (gin), which means there's already a deferred binding implementation generated by ginjector. On Fri, Jun 11, 2010 at 5:58 PM, Olivier Monaco

Re: GWT very slow on IE

2010-06-11 Thread Vitali Lovich
Above all, are you sure you're not running hosted mode? That'll slow things down significantly. On Fri, Jun 11, 2010 at 11:56 AM, Prema Monica premamon...@gmail.comwrote: How many RPC calls do you have on this page? How is the performance on the other browsers? I believe IE 6 and 7 permit

Re: 1 layout - 3 browsers - 3 results?

2010-06-11 Thread Magnus
Hi Alejandro, I think you are replying to a post that I cancelled. I did so, because I managed to reproduce this behavior with a minimalistic piece of code so that it was clear that it must be a general issue. I found that here must be a problem in the GWT version that is not fixed yet:

Re: app engine with hosted mode

2010-06-11 Thread alexh
No one has tried this? On Jun 9, 9:12 pm, alexh alexanderhar...@gmail.com wrote: Hi, I am currently developing a GWT application that will run on Google App Engine. I have chosen to use Maven and am running my application from the command line for debugging and testing. What I would like to

[gwt-contrib] Re: Improving event handling, as initiated in 1.6

2010-06-11 Thread Dan
I don't suppose you could bump the wave Thomas? I seem to not have access to do anything but add blank replies... On May 31, 5:48 am, Brendan Kenny bcke...@gmail.com wrote: Rob -- You might have already seen this, but Thomas created a wave on the topic to get things

Re: [gwt-contrib] Re: Improving event handling, as initiated in 1.6

2010-06-11 Thread Thomas Broyer
On Thu, Jun 10, 2010 at 11:59 PM, Dan ddum...@gmail.com wrote: I don't suppose you could bump the wave Thomas?   I seem to not have access to do anything but add blank replies... I've added you to the wave. Don't know what happened as you're a member of GWT-Contrib, which has full access to the

[gwt-contrib] Re: RR : Support reserved class names in CssResource (issue600801)

2010-06-11 Thread rjrjr
LGTM http://gwt-code-reviews.appspot.com/600801/diff/2001/3001 File user/src/com/google/gwt/resources/Resources.gwt.xml (right): http://gwt-code-reviews.appspot.com/600801/diff/2001/3001#newcode77 user/src/com/google/gwt/resources/Resources.gwt.xml:77: extend-configuration-property

[gwt-contrib] Fix implementation of Math.sinh and Math.tanh (external issue 4991) (issue602801)

2010-06-11 Thread rice
Reviewers: jat, Description: Fix implementation of Math.sinh and Math.tanh (external issue 4991) Please review this at http://gwt-code-reviews.appspot.com/602801/show Affected files: M user/super/com/google/gwt/emul/java/lang/Math.java M

[gwt-contrib] Fix behavior of Double.compare and Double.compareTo (external issue 4935) (issue603801)

2010-06-11 Thread rice
Reviewers: jat, Description: Fix behavior of Double.compare and Double.compareTo (external issue 4935) Please review this at http://gwt-code-reviews.appspot.com/603801/show Affected files: M user/super/com/google/gwt/emul/java/lang/Double.java M

[gwt-contrib] Restore deleted public method (issue604801)

2010-06-11 Thread rice
Reviewers: Lex, Description: Restore deleted public method Please review this at http://gwt-code-reviews.appspot.com/604801/show Affected files: M user/src/com/google/gwt/user/client/rpc/impl/AbstractSerializationStreamWriter.java Index:

[gwt-contrib] Re: Restore deleted public method (issue604801)

2010-06-11 Thread jat
Since the underlying implementation is so different, maybe we should break any users of this and instead introduce something that is less fragile, like a class using only translatable primitives that can serialize/deserialize itself. http://gwt-code-reviews.appspot.com/604801/show --

[gwt-contrib] Re: Fix behavior of Double.compare and Double.compareTo (external issue 4935) (issue603801)

2010-06-11 Thread jat
LGTM http://gwt-code-reviews.appspot.com/603801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Restore deleted public method (issue604801)

2010-06-11 Thread דניאל רייס
Right now, the standard RPC format hasn't changed (although deRPC has, since the whole point if to be able to eval the payload into the client). So anyone who has a custom RPC system needs a way to generate a double[2] from a long. Longer term, I'd like to transmit longs as an int[3]

[gwt-contrib] Re: Restore deleted public method (issue604801)

2010-06-11 Thread John Tamplin
On Fri, Jun 11, 2010 at 3:07 PM, Daniel Rice (דניאל רייס) r...@google.comwrote: Right now, the standard RPC format hasn't changed (although deRPC has, since the whole point if to be able to eval the payload into the client). So anyone who has a custom RPC system needs a way to generate a

[gwt-contrib] Implemented Array and descendants as overlay types. Simplified Assertion convenience methods. Fi... (issue605801)

2010-06-11 Thread rchandia
Reviewers: Dan Rice, Description: Implemented Array and descendants as overlay types. Simplified Assertion convenience methods. Fixed code style issues. Review by: r...@google.com Please review this at http://gwt-code-reviews.appspot.com/605801/show Affected files: M

[gwt-contrib] Re: Implemented Array and descendants as overlay types. Simplified Assertion convenience methods. Fi... (issue500801)

2010-06-11 Thread rchandia
I've reposted this patch based on the branch at https://google-web-toolkit.googlecode.com/branches/lwc-gwt-migration, please review there On 2010/05/10 18:38:14, rchandia wrote: http://gwt-code-reviews.appspot.com/500801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Fix implementation of Math.sinh and Math.tanh (external issue 4991) (issue602801)

2010-06-11 Thread jat
LGTM if the extra comments are removed and the JRE compatibility question is checked. http://gwt-code-reviews.appspot.com/602801/diff/1/2 File user/super/com/google/gwt/emul/java/lang/Math.java (right): http://gwt-code-reviews.appspot.com/602801/diff/1/2#newcode30

[gwt-contrib] Re: Implemented Array and descendants as overlay types. Simplified Assertion convenience methods. Fi... (issue500801)

2010-06-11 Thread rchandia
(I pressed send too soon) I've reposted this patch based on the branch at https://google-web-toolkit.googlecode.com/branches/lwc-gwt-migration, please review now at http://gwt-code-reviews.appspot.com/605801 On 2010/05/10 18:38:14, rchandia wrote:

[gwt-contrib] Add new LongLib test case (issue607801)

2010-06-11 Thread rice
Reviewers: jat, Description: Add new LongLib test case Please review this at http://gwt-code-reviews.appspot.com/607801/show Affected files: M dev/core/super/com/google/gwt/lang/LongLibBase.java A dev/core/test/com/google/gwt/lang/LongLibTest.java --

[gwt-contrib] Re: Fix implementation of Math.sinh and Math.tanh (external issue 4991) (issue602801)

2010-06-11 Thread rice
http://gwt-code-reviews.appspot.com/602801/diff/1/2 File user/super/com/google/gwt/emul/java/lang/Math.java (right): http://gwt-code-reviews.appspot.com/602801/diff/1/2#newcode30 user/super/com/google/gwt/emul/java/lang/Math.java:30: //return (x = 0.0) ? 0.0 - x : x; Oops, I meant to test

[gwt-contrib] [google-web-toolkit] r8241 committed - Fix behavior of Double.compare and Double.compareTo (external issue 49...

2010-06-11 Thread codesite-noreply
Revision: 8241 Author: r...@google.com Date: Fri Jun 11 10:06:45 2010 Log: Fix behavior of Double.compare and Double.compareTo (external issue 4935) Review at http://gwt-code-reviews.appspot.com/603801 Review by: j...@google.com

[gwt-contrib] Re: Fix implementation of Math.sinh and Math.tanh (external issue 4991) (issue602801)

2010-06-11 Thread rice
http://gwt-code-reviews.appspot.com/602801/show -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Implemented Array and descendants as overlay types. Simplified Assertion convenience methods. Fi... (issue605801)

2010-06-11 Thread rice
LGTM with nits http://gwt-code-reviews.appspot.com/605801/diff/1/2 File /bikeshed/src/com/google/gwt/collections/Assertions.java (right): http://gwt-code-reviews.appspot.com/605801/diff/1/2#newcode24 /bikeshed/src/com/google/gwt/collections/Assertions.java:24: * Needs comment

Re: [gwt-contrib] Re: A new model for external types (issue589801)

2010-06-11 Thread Ray Cromwell
I haven't been keeping up on the design of this, but the code-gen discussion got my interest. Now that it can model classes and interfaces, do you see this as being adaptable to supporting an exported type mechanism? That is, if a given type could be tagged external via some annotation (@Export),