[gwt-contrib] Experimental release of Elemental2

2016-07-02 Thread Paul Stockley
Would it be possible to break the project into a few packages? It would make it easier to find things. -- You received this message because you are subscribed to the Google Groups "GWT Contributors" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[gwt-contrib] Current snapshots failing with JDK 7

2016-07-02 Thread Thomas Broyer
Hi all, Current snapshots fail with JDK 7: [INFO] [INFO]Tracing compile failure path for type 'java.util.Comparator' [INFO] [INFO] [ERROR] Errors in

[gwt-contrib] Re: Bean Validation

2016-07-02 Thread Thomas Broyer
On Saturday, July 2, 2016 at 11:40:56 PM UTC+2, ManfredTremmel wrote: > > I've read in the 2.8rc1 release notes > that JSR 303 Bean > Validation in GWT is unmaintaned and marked as deprecated. For me, the > client and server side validation is

Re: [gwt-contrib] Re: Experimental release of Elemental2

2016-07-02 Thread Ignacio Baca Moreno-Torres
+1 to add some type-safe, in my current mini-project (almost 50 lines of code) there are 5 cast! 2 elements, 2 events and 1 event target... the event target is mandatory, but the events and elements will be nice to be type-safe. On Sat, Jul 2, 2016 at 11:07 PM Manuel Carrasco Moñino

[gwt-contrib] Bean Validation

2016-07-02 Thread ManfredTremmel
I've read in the 2.8rc1 release notes that JSR 303 Bean Validation in GWT is unmaintaned and marked as deprecated. For me, the client and server side validation is a killer feature and I've already solve the problems I had and also improved the

Re: [gwt-contrib] Re: Experimental release of Elemental2

2016-07-02 Thread Manuel Carrasco Moñino
I'm wondering if it would be possible to have type-safe convenience methods for creating elements, so as the user does not have to provide the string tag name, nor cast the object, maybe something like : HTMLButtonElement button = HTMLButtonElement.createElement(); instead of HTMLButtonElement

[gwt-contrib] Re: Compile specific files only

2016-07-02 Thread Ethan Hon
Without any background, the question is how can I add a compiler option so >> that the source inside a module is compiled without resolving its >> dependency? For example, a module as simple as below >> >> >> >> >> >> >> Only the .java files inside utils folder are translated into

[gwt-contrib] Re: Compile specific files only

2016-07-02 Thread Jens
> Without any background, the question is how can I add a compiler option so > that the source inside a module is compiled without resolving its > dependency? For example, a module as simple as below > > > > > > > Only the .java files inside utils folder are translated into javascript.

[gwt-contrib] Compile specific files only

2016-07-02 Thread Ethan Hon
Hi guys, Without any background, the question is how can I add a compiler option so that the source inside a module is compiled without resolving its dependency? For example, a module as simple as below Only the .java files inside utils folder are translated into javascript.