[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-10 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: I agree that we should indirect through JSNI only if the method is actually private. This

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-10 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: Actually we discussed this internally and we have an agreement on our side to add the supp

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-10 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: The existing code is already fixed. The question remains whether we want to allow priva

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-10 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: A simple "fix" is to only use the JSNI method if the method is private. And in that case, als

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-10 Thread Roberto Lublinerman
Roberto Lublinerman has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: The JsInliner should take care of this case. Methods that are called in only one place

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-10 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: I think there are optimization steps in JS which can reduce the code bloat. Roberto, can y

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-10 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: IIRC, this new behavior is also consistent with @Inject in google-gin which again makes sense

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-09 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: The surprise comes from violating expectations. I would expect all callers to a private me

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-09 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: If somebody thinks that a field/method needs to be package visible for uibinder then they

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-09 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: Current behavior (forcing it to be package-visible) I think is just an incident of how gen

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-09 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: I think we need to test this in dev mode with the JDT upgrade. If we're using the bytecode

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-09 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: Actually, I encouraged this solution so I will try to answer. I think enabling private meth

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-09 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Allow @UIHandler annotated methods to be private. .. Patch Set 2: As tedious as it can be, I'd rather ask people to fix the projects. If there are really too m

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-08 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new patch set (#2). Change subject: Allow @UIHandler annotated methods to be private. .. Allow @UIHandler annotated methods to be private. Even though @UIHandler annotated methods were not all

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-08 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new change for review. https://gwt-review.googlesource.com/2450 Change subject: Allow @UIHandler annotated methods to be private. .. Allow @UIHandler annotated methods to be private. Even