Re: GWT servlet access

2011-06-03 Thread Xybrek
On Friday, 03 June, 2011 04:30 AM, khiem nguyen wrote: 404 means not found try to print out your request-url first to see if it matches host:port/mycompany/sayHello or not. i think it will not match, your request url will also include your gwt-module-name in the path On Thu, Jun 2, 2011 at

FixComputerpProblemsSite Surely Knows How to Fix Computer Problems!

2011-06-03 Thread Fixcomputerproblems Site
I was having problems with my laptop before. Good thing * FixComputerpProblemsSite* helped me fix it. And they are really the experts when it comes to solving any computer related issues. They can easily fix computer problems http://www.fixcomputerproblemssite.com/ without breaking a sweat.

Caching large datasets on Client or Server?

2011-06-03 Thread Gambo
Hi there, I am struggling in finding a good solution for a caching method in my application. The client is sometimes retrieving more than 5000 rows which will be displayed in a pageable grid for now. In my first solution everytime the users clicked on next page the server only send the data

Re: Best Practise: Database Java Backend

2011-06-03 Thread Gambo
Thanks Juan I will have a look at it! On 31 Mai, 19:18, Juan Pablo Gardella gardellajuanpa...@gmail.com wrote: See this samplehttps://bitbucket.org/gardellajuanpablo/gwt-sample/wiki/Home. There the database is generate and populated at runtime. Util to prototype. 2011/5/31 Paul Robinson

Re: Announce: gwt-voices 2.1.0 released -- sound for your apps

2011-06-03 Thread Alain Ekambi
Great Job Fred. Keep it up. Alain 2011/6/3 Fred Sauer fre...@google.com There's a new version of gwt-voices ready for downloadhttp://code.google.com/p/gwt-voices/wiki/GettingStarted. I'd love to get your feedback on this release, so I can remove the * ReleaseCandidate* tag and replace it

Re: Reflection Class Generator

2011-06-03 Thread Nagin Kothari
Great!! -Nagin On Thu, Jun 2, 2011 at 7:05 PM, Honza Rames rame...@gmail.com wrote: OK, I'm making some preparations to release it on Google Code. I'll post all the info there (I mean what it can and cannot do and why some things are little bit different from java reflection API).

Re: Strange bug with Editor and context.create() (With code example)

2011-06-03 Thread Thomas Broyer
On Friday, June 3, 2011 2:45:15 AM UTC+2, pjulien wrote: UserProxy editable = request.edit(request.create(UserProxy.class)); That's your problem right there. You don't call RequestContext#edit() on the proxy that's returned from RequestContext#create It shouldn't be an issue: create()

Security for RequestFactoryServlet and static cache in ServiceLayerCache

2011-06-03 Thread StefanR
To allow some RequestFactory calls to be executed with and some without an authenticated session, I thought of providing two different RequestFactoryServlets at two different urls. The first one is secured by an http filter and the second is not. The unsecured version adds a special

Re: Security for RequestFactoryServlet and static cache in ServiceLayerCache

2011-06-03 Thread Thomas Broyer
I think the field is static to allow multiple instances of the same servlet (for the same servlet-mapping, which I believe is allowed by the servlet spec) share the state, which is static anyway (what's cached is only what's derived from classes and interfaces). If your ServiceLayerDecorator

Re: Announce: gwt-voices 2.1.0 released -- sound for your apps

2011-06-03 Thread Juan Pablo Gardella
Thanks Fred!! 2011/6/3 Alain Ekambi jazzmatad...@googlemail.com Great Job Fred. Keep it up. Alain 2011/6/3 Fred Sauer fre...@google.com There's a new version of gwt-voices ready for downloadhttp://code.google.com/p/gwt-voices/wiki/GettingStarted. I'd love to get your feedback on

Aw: Re: Security for RequestFactoryServlet and static cache in ServiceLayerCache

2011-06-03 Thread StefanR
Hi Thomas, thanks for the feedback. Indeed the problem was to only intercept #createServiceInstance() but not #invoke(). Now, it works. Thanks, Stefan. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: Caching large datasets on Client or Server?

2011-06-03 Thread J.Ganesan
On Jun 3, 12:55 pm, Gambo mark.vanv...@gmail.com wrote: Hi there, I am struggling in finding a good solution for a caching method in my application. The client is sometimes retrieving more than 5000 rows which will be displayed in a pageable grid for now. In my first solution everytime the

Re: Overlay types in cell widgets

2011-06-03 Thread Eugen Paraschiv
Hi, I have the exact same problem, but using a *ProvidesKey *doesn't seem to change anything; this is my exact context: - I have a custom column for a button: return new ColumnCustomer, String(new ButtonCell()) { @Override public final String

ClickHandlers and Anchors?

2011-06-03 Thread kevin
I have a Anchor as a cell of a FlexTable. Both the Anchor and the FlexTable have click handlers and as a result, I'm getting two events fired when I click on the anchor. Any one have an idea how to detect that the FlexTable event is actually a click on the anchor? -- You received this message

Re: ClickHandlers and Anchors?

2011-06-03 Thread DaveC
if (event.getSource() instanceof Anchor) { ... } Cheers, Dave On Jun 3, 1:17 pm, kevin kalo...@gmail.com wrote: I have a Anchor as a cell of a FlexTable. Both the Anchor and the FlexTable have click handlers and as a result, I'm getting two events fired when I click on the anchor. Any one

Re: Aw: Re: activities - places with more complex layouts

2011-06-03 Thread tanteanni
.. so i have one place for all properties. but how many activities? One? with one activity, the AccepsOneWidget-widget has to be the hole tab-layout? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: combine GWT application from several modules coming from JARs or OSGI bundles

2011-06-03 Thread DaveC
If you mean dynamically loading code at runtime, I don't *think* this is possible - we have a similar app (written originally against GWT 1.6) we have the notion of a plugin - it's a separate GWT module in it's own project, but is pulled in at compile time... these modules are pulled in using

Re: ClickHandlers and Anchors?

2011-06-03 Thread kevin
looks like calling event.stopPropagation() in the solution. On Jun 3, 8:17 am, kevin kalo...@gmail.com wrote: I have a Anchor as a cell of a FlexTable. Both the Anchor and the FlexTable have click handlers and as a result, I'm getting two events fired when I click on the anchor. Any one

@Import CssResource not working (as expected?)

2011-06-03 Thread DaveC
Hi, Given: @ImportedWithPrefix(unordered) interface UnorderedListStyles extends CssResource { list(); } @ImportedWithPrefix(list) interface ListItemStyles extends CssResource { item(); } interface Resources extends ClientBundle { @Import(value = {UnorderedListStyles.class,

Re: Aw: Re: GWT 2.3 RequestFactory problem

2011-06-03 Thread Eric Andresen
Just glad to be able to give a little something back after all the help this forum has given me :-) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

Re: XML validation with XSD (SXML Schema) validation in GWT

2011-06-03 Thread Michaël
On 31 mai, 19:56, Jeff Chimene jchim...@gmail.com wrote: On 05/31/2011 08:52 AM, Micha l wrote: Hi, After a lot of research on the web I don't find how to validate a XML file with a XSD (XML Schema) in GWT (2.3.0). I saw that on the JSE 6 there is a SchemaFactory class, but not in

'null' is null or not an object

2011-06-03 Thread VJ
I am using gwt with struts2. I get a javascript error in IE. It works fine in firefox and chrome.I got this problem only in IE.I tried in IE7 and IE8. Here is the javascript error i get. Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/ 4.0; .NET CLR

can't install Google Web Toolkit Developer Plugin

2011-06-03 Thread vinoth vinoth
hi , Actually i tried to insatll Google Web Toolkit Developer Plugin in both google chrome and mozilla firebox but i got the following error. for mozilla i got the result but within a second it disappear and shows the below Secure Connection Failed dl-ssl.google.com uses an invalid

GWT Test Case errors because of Google Guice injection problems

2011-06-03 Thread MH
Hi, I'm writing a GWT application with Guice on the server side and GIN on the client side. Everything works fine when I run the Devmode. Problems start, when I try to run GWT Test Cases. When I run the test cases using the Eclipse Run JUnit, everything is initiated properly. The problems start

Catch Frame widget GET Method

2011-06-03 Thread Xybrek
Hi, When I load a URL into a 'Frame' widget and from there click some web links I can see 'GET' Method showing in Eclipse' console window. So with this I have place GWT.log to see if I can catch it from here: Frame myframe = new Frame(some_url_here); myframe.addLoadHandler(new

Catch Frame widget GET event

2011-06-03 Thread Xybrek
Hi, When I load a URL into a 'Frame' widget and from there click some web links I can see 'GET' Method showing in Eclipse' console window. So with this I have place GWT.log to see if I can catch it from here: Frame myframe = new Frame(some_url_here); myframe.addLoadHandler(new

Re: Catch Frame widget GET Method

2011-06-03 Thread Xybrek
On Friday, 03 June, 2011 10:42 PM, Xybrek wrote: Hi, When I load a URL into a 'Frame' widget and from there click some web links I can see 'GET' Method showing in Eclipse' console window. So with this I have place GWT.log to see if I can catch it from here: Frame myframe = new

Layout Panels, IE, and PX vs EM bug

2011-06-03 Thread Thad
I'm seeing something similar to the problem reported here: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/fe63f0745ee488b2/8bb9148576bd3538 When I create a DockLayoutPanel or SplitLayoutPanel using Style.Unit.EM, IE7 IE8 to not recognize the height I set for the interior

Re: can't install Google Web Toolkit Developer Plugin

2011-06-03 Thread David Chandler
Sounds like you're having network or proxy issues. I can reach https://dl-ssl.google.com/gwt/plugins/chrome/gwt-dev-plugin.crx without any issues. /dmc On Fri, Jun 3, 2011 at 3:35 AM, vinoth vinoth vino3...@gmail.com wrote: hi , Actually i tried to insatll Google Web Toolkit Developer

project organization

2011-06-03 Thread jako
Hi, I am a newbie of gwt. Please excuse me if I ask for info already addressed, I hope someone help me! I have created a gwt project with maven gwt plugin 2.2.0 (war) that works with ejb 3.0 project (jar) in jboss 5.1.0. Until now I used remote interface for my session bean, but I was wondering

Re: Performance Differences IE 8 Vs FF 3.x

2011-06-03 Thread mdwarne
I have also had issues with IE slowness. IE does not perform well when displaying of large sets of data. I had to recommend my client use FF or Chrome. Mike On Jun 2, 3:12 pm, Mittal mitt...@gmail.com wrote: Screen also has real estate issue - I dont think I can use CellList but its good

information regarding header labels for GWT charts in java

2011-06-03 Thread Deepesh Naidu
Hi All, I am developing gwt charts in java. I have a bar chart with all the X and Y axis properly populated with labels. But I am unable to get headers for X axis and Y axis. Can anyone advice on how can i get headers on the X and Y axis in GWT charts ? I tried XAxis legend but it didnt work.

Re: Hierachy of autobean for state serialization

2011-06-03 Thread Derek
Thanks for posting this, Panam. I was just starting to consider using AutoBean with LocalStorage, since storing a JSON string seems like the best solution than rolling my own custom serializer. I haven't gotten too far into it beyond some simple test cases. For 2), I seem to recall seeing that

CellTree reload after empty root node

2011-06-03 Thread Tony
Hi everyone. I'm writing a client that retrieves a hierarchical set of data from the server. This data set is time dependent. If the user enters a time that is too old, the server will return an empty data set. The client uses a CellTree with the root node using an AsyncDataProvider. Whenever

Announce: gwt-dnd 3.1.1 released -- drag and drop for your apps

2011-06-03 Thread Fred Sauer
There's a new version of gwt-dnd ready for downloadhttp://code.google.com/p/gwt-dnd/wiki/GettingStarted. I'd love to get your feedback on this release, so I can remove the * ReleaseCandidate* tag and replace it with a shiny new *Featured* tag. The release notes

RequestFactory exception when creating a proxy

2011-06-03 Thread Sydney
An exception is thrown when I try to create a proxy: myRequestProvider.get().create(MyDomainDomain.class); java.lang.IllegalArgumentException: Unknown proxy type com.app.shared.proxy.MyDomainProxy at

GWT 2.4 beta | compile Error

2011-06-03 Thread xelibrety
I try to migrate from gwt 2.3 to 2.4beta. Unfortunately I'm not not able to compile: Here's the relevant error: [ERROR] Errors in 'jar:file/*/gwt-user-2.4.jar!/com/google/ gwt/validation/client/spi/GwtValidationProvider.java' [INFO] [ERROR] Line 36: Rebind result

StorageEvent does not fire across windows

2011-06-03 Thread Trey Roby
Has anyone tried using StorageEvents? When I update Storage with a putItem(), a StorageEvent should be fired to every window running with my GWT app. This is not the case. In fact, the only browser that this works on is Opera. After some study of Storage.gwt.xml, it appears that the class

Html website - GWT

2011-06-03 Thread Ricky Button
I have an entire html website, all static content, and I want to make it dynamic by using GWT/GAE. How should I go about using this html to create a website with GWT that is about half static and half dynamic content? Thanks -- You received this message because you are subscribed to the

[gwt-contrib] RR: Exercise RunAsyncCode class for prefetching fragments. (issue1453805)

2011-06-03 Thread zundel
Reviewers: jbrosenberg, tobyr, Description: RR: Exercise RunAsyncCode class for prefetching fragments. Does testPreload() look right? We knew there was a bug in RunAsyncCode.isLoaded(), but now that that bug is fixed, I can't seem to invoke the preloading functionality. Please review this at

[gwt-contrib] Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1446815)

2011-06-03 Thread xtof
Reviewers: tbroyer, jlabanca, jat, skybrian, Description: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. Support SafeUri-typed arguments in SafeHtmlTemplates. Also added a few overloads in c.g.g.user.client. Note that this is a breaking change in the sense

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1447812)

2011-06-03 Thread xtof
http://gwt-code-reviews.appspot.com/1447812/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1447812)

2011-06-03 Thread xtof
Thanks for the review! Please take another look... --xtof http://gwt-code-reviews.appspot.com/1447812/diff/1/tools/api-checker/config/gwt23_24userApi.conf File tools/api-checker/config/gwt23_24userApi.conf (right):

[gwt-contrib] Re: RR: Exercise RunAsyncCode class for prefetching fragments. (issue1453805)

2011-06-03 Thread zundel
http://gwt-code-reviews.appspot.com/1453805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Exercise RunAsyncCode class for prefetching fragments. (issue1453805)

2011-06-03 Thread zundel
http://gwt-code-reviews.appspot.com/1453805/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Making media events bitless, freeing up a few event bits, since modern, (issue1447816)

2011-06-03 Thread fredsa
Reviewers: jlabanca, Description: Making media events bitless, freeing up a few event bits, since modern, implementing browsers don't leak the way old ones did. The following constants, marked as 'experimental', have been removed: - com.google.gwt.user.client.Event.MEDIAEVENTS -

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1447812)

2011-06-03 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1447812/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1447812)

2011-06-03 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1447812/diff/1/user/src/com/google/gwt/safehtml/rebind/SafeHtmlTemplatesImplMethodCreator.java File user/src/com/google/gwt/safehtml/rebind/SafeHtmlTemplatesImplMethodCreator.java (right):

[gwt-contrib] Re: Making media events bitless, freeing up a few event bits, since modern, (issue1447816)

2011-06-03 Thread jlabanca
http://gwt-code-reviews.appspot.com/1447816/diff/1/user/src/com/google/gwt/user/client/impl/DOMImplStandard.java File user/src/com/google/gwt/user/client/impl/DOMImplStandard.java (right):

[gwt-contrib] Re: Making media events bitless, freeing up a few event bits, since modern, (issue1447816)

2011-06-03 Thread fredsa
Yep and yep. Thanks. http://gwt-code-reviews.appspot.com/1447816/diff/1/user/src/com/google/gwt/user/client/impl/DOMImplStandard.java File user/src/com/google/gwt/user/client/impl/DOMImplStandard.java (right):

[gwt-contrib] Re: Making media events bitless, freeing up a few event bits, since modern, (issue1447816)

2011-06-03 Thread jlabanca
LGTM assuming you fix those two things. http://gwt-code-reviews.appspot.com/1447816/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: fixes a bug in TypeOracle that marked vararg methods with the transient modifier, which is illeg... (issue1447817)

2011-06-03 Thread jbrosenberg
LGTM http://gwt-code-reviews.appspot.com/1447817/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Add armor for exceptions thrown by Activity#onCancel (issue1446816)

2011-06-03 Thread rjrjr
Reviewers: jlabanca, rchandia, Description: Add armor for exceptions thrown by Activity#onCancel Please review this at http://gwt-code-reviews.appspot.com/1446816/ Affected files: M user/src/com/google/gwt/activity/shared/ActivityManager.java M

[gwt-contrib] Re: Add armor for exceptions thrown by Activity#onCancel (issue1446816)

2011-06-03 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/1446816/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Support is/has methods in Editor framework. (issue1443812)

2011-06-03 Thread bobv
Reviewers: rjrjr, Description: Support is/has methods in Editor framework. Issue 6040. Patch by: bobv Review by: rjrjr Please review this at http://gwt-code-reviews.appspot.com/1443812/ Affected files: M user/src/com/google/gwt/editor/rebind/model/EditorModel.java M

[gwt-contrib] Re: I don't believe in magic, but as Scott points out, there are consistent (issue1453804)

2011-06-03 Thread zundel
http://gwt-code-reviews.appspot.com/1453804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10272 committed - Add armor for exceptions thrown by Activity#onCancel...

2011-06-03 Thread codesite-noreply
Revision: 10272 Author: rj...@google.com Date: Fri Jun 3 08:57:30 2011 Log: Add armor for exceptions thrown by Activity#onCancel Review at http://gwt-code-reviews.appspot.com/1446816 http://code.google.com/p/google-web-toolkit/source/detail?r=10272 Modified:

[gwt-contrib] Re: Support is/has methods in Editor framework. (issue1443812)

2011-06-03 Thread rjrjr
LGTM On 2011/06/03 18:49:28, bobv wrote: http://gwt-code-reviews.appspot.com/1443812/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Making media events bitless, freeing up a few event bits, since modern, (issue1447816)

2011-06-03 Thread fredsa
http://gwt-code-reviews.appspot.com/1447816/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Making media events bitless, freeing up a few event bits, since modern, (issue1447816)

2011-06-03 Thread jlabanca
LGTM http://gwt-code-reviews.appspot.com/1447816/diff/2002/user/src/com/google/gwt/user/client/impl/DOMImplStandard.java File user/src/com/google/gwt/user/client/impl/DOMImplStandard.java (right):

[gwt-contrib] Make private two new methods accidentally exposed in ActivityManager (issue1449811)

2011-06-03 Thread rjrjr
Reviewers: rchandia, Description: Make private two new methods accidentally exposed in ActivityManager Please review this at http://gwt-code-reviews.appspot.com/1449811/ Affected files: M user/src/com/google/gwt/activity/shared/ActivityManager.java Index:

[gwt-contrib] Re: Make private two new methods accidentally exposed in ActivityManager (issue1449811)

2011-06-03 Thread rchandia
LGTM http://gwt-code-reviews.appspot.com/1449811/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: CompileModule creates a serialized set of compilation units to represent (issue1448808)

2011-06-03 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1448808/diff/6001/dev/core/src/com/google/gwt/dev/CompileModule.java File dev/core/src/com/google/gwt/dev/CompileModule.java (right): http://gwt-code-reviews.appspot.com/1448808/diff/6001/dev/core/src/com/google/gwt/dev/CompileModule.java#newcode54

[gwt-contrib] Re: CompileModule creates a serialized set of compilation units to represent (issue1448808)

2011-06-03 Thread tobyr
First set of comments http://gwt-code-reviews.appspot.com/1448808/diff/6001/dev/core/src/com/google/gwt/dev/CompileModule.java File dev/core/src/com/google/gwt/dev/CompileModule.java (right):

[gwt-contrib] [google-web-toolkit] r10273 committed - Make private two new methods accidentally exposed in ActivityManager...

2011-06-03 Thread codesite-noreply
Revision: 10273 Author: rj...@google.com Date: Fri Jun 3 09:52:12 2011 Log: Make private two new methods accidentally exposed in ActivityManager Review at http://gwt-code-reviews.appspot.com/1449811 Review by: rchan...@google.com

[gwt-contrib] Re: Add SafeUri type, similar to SafeHtml but for values in a URL attribute context. (issue1447812)

2011-06-03 Thread xtof
http://gwt-code-reviews.appspot.com/1447812/diff/1/user/src/com/google/gwt/safehtml/rebind/SafeHtmlTemplatesImplMethodCreator.java File user/src/com/google/gwt/safehtml/rebind/SafeHtmlTemplatesImplMethodCreator.java (right):

[gwt-contrib] Re: CompileModule creates a serialized set of compilation units to represent (issue1448808)

2011-06-03 Thread jbrosenberg
http://gwt-code-reviews.appspot.com/1448808/diff/6001/dev/core/src/com/google/gwt/dev/cfg/ModuleDef.java File dev/core/src/com/google/gwt/dev/cfg/ModuleDef.java (right): http://gwt-code-reviews.appspot.com/1448808/diff/6001/dev/core/src/com/google/gwt/dev/cfg/ModuleDef.java#newcode94

[gwt-contrib] [google-web-toolkit] r10274 committed - Making media events bitless, freeing up a few event bits, since modern...

2011-06-03 Thread codesite-noreply
Revision: 10274 Author: fre...@google.com Date: Fri Jun 3 10:56:12 2011 Log: Making media events bitless, freeing up a few event bits, since modern, implementing browsers don't leak the way old ones did. The following constants, marked as 'experimental', have been removed: -

[gwt-contrib] Fix enum ordinalization black-listing for upcasts in new array initializers (issue1449812)

2011-06-03 Thread jbrosenberg
Reviewers: cromwellian, zundel, Description: Fix enum ordinalization black-listing for upcasts in new array initializers Please review this at http://gwt-code-reviews.appspot.com/1449812/ Affected files: M dev/core/src/com/google/gwt/dev/jjs/impl/ImplicitUpcastAnalyzer.java M

[gwt-contrib] Re: Making media events bitless, freeing up a few event bits, since modern, (issue1447816)

2011-06-03 Thread fredsa
Committed as r10274 http://gwt-code-reviews.appspot.com/1447816/diff/2002/user/src/com/google/gwt/user/client/impl/DOMImplStandard.java File user/src/com/google/gwt/user/client/impl/DOMImplStandard.java (right):

[gwt-contrib] Re: Add concrete SourceInfo for varargs in method calls (issue1454801)

2011-06-03 Thread cromwellian
On 2011/06/03 23:06:36, jbrosenberg wrote: What's the motivation for this? http://gwt-code-reviews.appspot.com/1454801/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10275 committed - fixes a bug in TypeOracle that marked vararg methods with the transien...

2011-06-03 Thread codesite-noreply
Revision: 10275 Author: goderba...@google.com Date: Fri Jun 3 12:47:44 2011 Log: fixes a bug in TypeOracle that marked vararg methods with the transient modifier, which is illegal for methods Review at http://gwt-code-reviews.appspot.com/1447817 Review by: jbrosenb...@google.com

[gwt-contrib] Re: Fix enum ordinalization black-listing for upcasts in new array initializers (issue1449812)

2011-06-03 Thread cromwellian
LGTM, I wonder how many more of these implicit upcasts are hiding :) http://gwt-code-reviews.appspot.com/1449812/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Add concrete SourceInfo for varargs in method calls (issue1454801)

2011-06-03 Thread Jason Rosenberg
The EnumOrdinalizer has the ability to report for each non-ordinalizable enum, the source location that caused it to be black-listed. I noticed that for the case of JNewArray's constructed in a method call with varargs, the source info was showing up as Unknown: Line 0. This change allows the

[gwt-contrib] Re: Add concrete SourceInfo for varargs in method calls (issue1454801)

2011-06-03 Thread Scott Blum
Be sure to get the one in GwtAstBuilder too. But don't makeChild() there, just use the existing reference. -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] [google-web-toolkit] r10276 committed - Autoformat JavaToJavaScriptCompiler....

2011-06-03 Thread codesite-noreply
Revision: 10276 Author: sco...@google.com Date: Fri Jun 3 15:15:01 2011 Log: Autoformat JavaToJavaScriptCompiler. Review by: zun...@google.com http://code.google.com/p/google-web-toolkit/source/detail?r=10276 Modified: