Saturday, June 30, 2012

Re: How to use NumberFormat to set maximum number of integer digit

Simply split it by dot. Take last 3 chars of first string, use formatting for second. And join again by dot

-Bakul

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/jo7O_wFoSZ0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Failed to create an instance of Service via deferred binding

Hi. I'm having the same error! Could you find a solution for this?

Thanks in advance!


--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: CSS3 Transforms

Solved:

Use MozTransform, not mozTransform

You can confirm this by doing yourElement.style. in Firebug to see the list of all available CSS style property names. 

Because GWT just passed through to this (code shown below), you need to match the names exactly. 
  • WebKit - does not matter if upper/lower
  • Mozilla - needs uppercase
  • IE9 - needs lowercase
  • Opera - uppercase
  • khtml - lowercase
It looks like you may need to empirically determine this capitalization for each browser. :(
  /**     * Sets the value of a named property.     */    private native void setPropertyImpl(String name, String value) /*-{      this[name] = value;    }-*/;
Also, just a tip, but it would be easier if you built the property value string once, and then iterated across the list of property names. Though it is not the case here, you run the risk of a typo in one of the six setProperty() calls corrupting the CSS, which would be easy to miss when reading over the code. Try something like the following:
    /**       * Apply all vendor prefixed styles for translation of given element       * @param el element to translate       * @param x distance to translate       */      public static void translateX(Element el, int x) {            String value = "translate(" + x + "px)";          String name = "Transform";            String[] engines = new String[]{"","webkit","ms","Moz","O","khtml"};                  for( String prefix : engines ) {              el.getStyle().setProperty( prefix+name, value);          }      }


Sincerely,
Joseph

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/e3-Hk3JSZqoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

How to convert an object that contains List to json using AutoBean

Does anyone have successfully convert List of objects to JSON by using AutoBean?  it seems it's giving me error like null cannot be in getter method.. anyone has an simple example to share?  thx.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/bOePgj-xMBYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: How to use NumberFormat to set maximum number of integer digit

that means format a 1234.567 will get 234.58. 

Why would you ever want to do that? Now you users don't know if you are displaying 234 or 1234 of 1000234. Your trouble might be coming from this unusual formatting you are attempting. Most number formatting functions won't do this because it does not make sense. They focus on truncation and rounding of the decimals which simply reduce the LSB's, not the MSB's.

If you must do this, just write your own function to truncate the higher magnitude values.


Sincerely,
Joseph 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/77QmVzK0bZcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: CSS3 Transforms

Odd, I just checked and the syntax works for me (manually inserted) in FF13. Does Firebug even show these CSS properties applied?

Also, just a tip, but it would be easier if you built the property value string once, and then iterated across the list of property names. Though it is not the case here, you run the risk of a typo in one of the six setProperty() calls corrupting the CSS, which would be easy to miss when reading over the code.

Also,  "translate(" + x + "px)" should work fine without the Integer wrapper.


Sincerely,
Joseph

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/y6VRxVWAgjAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Deferred Binding with ClientBundle

Jens,

I've used it on a few projects without issue. Just checkout the RaphaelJs main page, all icons on it are really SVG. They appear instantly for me in IE. There are also their free icons. It is simple enough to make these too in InkScape.

The only caveat I know of is that Android did not support SVG or VML prior to v4. This was odd, but I found a dev post saying they save 1MB by cutting out the SVG engine from WebKit. Since our sites have <0.2% of hits from affected browsers, it is not a concern.

Sincerely,
Joseph

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/vBjZ3T6roLYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Deferred Binding with ClientBundle

Yes, Pure SVG would need an image for for IE. If you use RaphaelJs though, you can use the SVG on IE.

Do you have experience with this? How is the expected performance in IE if you have lots of small SVG icons on your page that have to be converted? 

-- J.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/aIL1Luwsk9kJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Date Serialization

Hi!

I need to parse serialized java.util.Date values in Python. Where can I find information on the timestamp that represents date and time in the serialized format?

Currently, I add some constant to the raw value and divide it by 1000, which brings me to a Unix timestamp. However, this constant needs to be changed sometimes.

Daniel

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/6vjzTiNDiHYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: reordering of column in celltable

Oh, sorry, I overlook it.

On Saturday, June 30, 2012 5:23:08 PM UTC+8, Thomas Broyer wrote:


On Saturday, June 30, 2012 11:17:03 AM UTC+2, tong123123 wrote:
If  the celltable has something like
addColumn(Column<T,?> col, int insertIndex)

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/dzhEcQ_RN5gJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: reordering of column in celltable



On Saturday, June 30, 2012 11:17:03 AM UTC+2, tong123123 wrote:
If  the celltable has something like
addColumn(Column<T,?> col, int insertIndex)

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/maKwdQIqjsYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: UiBinder as Cell widget



On Saturday, June 30, 2012 8:27:38 AM UTC+2, Deepak Singh wrote:
Now 2.5rc1 is out. 

Any document / example how to render uibinder (created by 2.4) to be used as column in celltable. And of course it should handle event from uibinder also.

The doc is here: https://developers.google.com/web-toolkit/doc/latest/DevGuideUiBinder#Rendering_HTML_for_Cells 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/UB-Z59DAc6AJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Friday, June 29, 2012

Re: UiBinder as Cell widget

Now 2.5rc1 is out. 

Any document / example how to render uibinder (created by 2.4) to be used as column in celltable. And of course it should handle event from uibinder also.

Thanks in advance
Deepak

On Thu, Jun 14, 2012 at 10:07 PM, Deepak Singh <deepaksingh.kr@gmail.com> wrote:
Great news !!!


On Thu, Jun 14, 2012 at 2:55 PM, Thomas Broyer <t.broyer@gmail.com> wrote:

On Thursday, June 14, 2012 5:47:05 AM UTC+2, Deepak Singh wrote:
Then i will wait for 2.5.

FYI, RC1 should be out within a week. 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/qh76FozrqbYJ.

To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



--
Deepak Singh



--
Deepak Singh

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Any summary on The History and Future of Google Web Toolkit available?

Another news:

http://podcasts.infoworld.com/d/application-development/google-hands-over-control-of-google-web-toolkit-steering-committee-196753?_kip_ipx=393161888-1341015596&source=rss_infoworld_top_stories_&utm_source=twitterfeed&utm_medium=twitter


On Sat, Jun 30, 2012 at 3:11 AM, Thomas Broyer <t.broyer@gmail.com> wrote:


On Friday, June 29, 2012 10:14:14 PM UTC+2, Clint wrote:
I was hoping to see the Google IO session streamed: The History and Future of Google Web Toolkit, but apparently it wasn't available.

Any summaries folks care to post from that session? Feel free to post a link to the video once its available if you see it.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/bnDZTkr9YxgJ.

To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: gwt 2.5 - Elemental -> Browser compatibility question ?

Sent from BlackBerry® on Airtel

From: Thomas Broyer <t.broyer@gmail.com>
Sender: google-web-toolkit@googlegroups.com
Date: Fri, 29 Jun 2012 15:00:27 -0700 (PDT)
To: <google-web-toolkit@googlegroups.com>
ReplyTo: google-web-toolkit@googlegroups.com
Subject: Re: gwt 2.5 - Elemental -> Browser compatibility question ?



On Friday, June 29, 2012 10:18:54 PM UTC+2, regnoult axel wrote:
Hello,

Reading the official documentation  :

it is said that :

 Using these draft-spec extensions may result in code that doesn't work on Firefox, Opera, or IE. 

My question, is that, for my current project that will be in production in 1 or 2 month, should I use Elementals ?

1 or 2 months? I wouldn't use too much experimental stuff then (except SuperDevMode, but that's an experimental dev tool, it's not part of the final app)
 
I need a compatibility with IE 7 and greater versions, Chrome and Firefox.

IE is a no-go for Elemental. IE9 might be envisaged, if you stick to the very basics (but then you'd better use com.google.gwt.dom, HTMLPanel/RenderablePanel and CellWidget).
 
I also did found a lot of documentation about elemental (neither how to use it, ..., neither inside the javadoc)

Elemental landed just 2 (or was it 3) weeks ago, and then Ray had to concentrate on I/O, and the rest of the team on shipping that 2.5.0 RC1; it's definitely too early to make use of Elemental other than trying it out and/or willing to help make it better.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/x-HcyHbNifcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Any summary on The History and Future of Google Web Toolkit available?



On Friday, June 29, 2012 10:14:14 PM UTC+2, Clint wrote:
I was hoping to see the Google IO session streamed: The History and Future of Google Web Toolkit, but apparently it wasn't available.

Any summaries folks care to post from that session? Feel free to post a link to the video once its available if you see it.

Ray just posted his slides: https://docs.google.com/presentation/d/1pC9WK80-fzIs2iMQOO3Jsvfmqv2erI9xucuF3lHOE7Q/edit 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/bnDZTkr9YxgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Any summary on The History and Future of Google Web Toolkit available?


On Friday, June 29, 2012 10:14:14 PM UTC+2, Clint wrote:
I was hoping to see the Google IO session streamed: The History and Future of Google Web Toolkit, but apparently it wasn't available.

Any summaries folks care to post from that session? Feel free to post a link to the video once its available if you see it.

Just found out that one: https://plus.google.com/103916508880440628637/posts/gBQCLHtiUZT 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/gJFgDO-rPykJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: How to ??

Well, in the textbox marked as "Path to the GWT installation directory" you have to put the path of your GWT installation directory (obviously).

If you unzipped GWT in the path C:/Java/gwt-2.4.0 you have to put that path.

Hope it helps, greetings ;-)

2012/6/29 apsen <david.wantia@googlemail.com>
I installed eclipse and gwt and i want to start my first project ---but i get always this dialog (att) What is my Problem?

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/9GumwZgq9qAJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.



--



Atte:
Natanael Maldonado

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Cell-Backed Widgets

+1

El viernes, 29 de junio de 2012 00:13:10 UTC-3, July escribió:
HI all:

I found one doc from GWT offcial wiki page, it's about cell-backed widgets:

The idea in this doc is really nice, however seem GWT does not continue with this idea? in this package:
com.google.gwt.widget.client
there are merely only one of the "modern widget" since 2011.

I think It would be very regretful if GWT team quit this wonderful design pattern.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/IEz81cg9INwJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: gwt-maven-plugin+GWT 240+hibernate-validator compilation problem

hibernate-validator seems to be included twice with classifier=sources, rather than once with and once without.

On Friday, June 29, 2012 1:25:06 PM UTC+2, Igory wrote:
Hi all, 

I'm trying to mavenize my project that uses gwt 2.4.0 and hibernate-validator (+ Editors, RequestFactory, GIN if it makes any sense) for client-side validations. Non-mavenized project compiles and runs fine. 
Mavenized project gives a set of simmilar errors (below) during gwt:compile that correspond to validation. 

The reason obviously is in my POM but I can't figure out why. Significant POM parts are below. 
Please help me! I'm stuck for 3 days already! 
Thanks to all in advance!
Igory.

--- mvn gwt:compile output---
 
[INFO] Compiling module com.module.Module
[INFO]    Validating newly compiled units
[INFO]       Ignored 8 units with compilation errors in first pass.
[INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
[INFO]    Resolving org.hibernate.validator.constraints.CreditCardNumber
[INFO]       Found type 'org.hibernate.validator.constraints.CreditCardNumber'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.CreditCardNumberValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.CreditCardNumberValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
... 
[INFO]          [ERROR] Annotation error: expected class java.lang.Class, got null
[INFO]    Resolving org.hibernate.validator.constraints.Email
[INFO]       Found type 'org.hibernate.validator.constraints.Email'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.EmailValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.EmailValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
... 
[INFO]          [ERROR] Annotation error: expected class java.lang.Class, got null
[INFO]    Resolving org.hibernate.validator.constraints.NotBlank
[INFO]       Found type 'org.hibernate.validator.constraints.NotBlank'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.NotBlankValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.NotBlankValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
...
[INFO]          [ERROR] Annotation error: expected class java.lang.Class, got null
[INFO]    Resolving org.hibernate.validator.constraints.ScriptAssert
[INFO]       Found type 'org.hibernate.validator.constraints.ScriptAssert'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.ScriptAssertValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.ScriptAssertValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
...
[INFO]    [ERROR] Errors in 'file:/home/igory/workspace/com/module/client/validation/MyValidationFactory.java'
[INFO]       [ERROR]  Internal compiler error
[INFO] java.lang.ExceptionInInitializerError
[INFO]  at com.google.gwt.validation.rebind.AbstractCreator.createBeanHelper(AbstractCreator.java:72)
[INFO]  at com.google.gwt.validation.rebind.ValidatorCreator.<init>(ValidatorCreator.java:62)
[INFO]  at com.google.gwt.validation.rebind.ValidatorGenerator.generate(ValidatorGenerator.java:68)
[INFO]  at com.google.gwt.core.ext.GeneratorExtWrapper.generate(GeneratorExtWrapper.java:48)
[INFO]  at com.google.gwt.core.ext.GeneratorExtWrapper.generateIncrementally(GeneratorExtWrapper.java:60)
[INFO]  at com.google.gwt.dev.javac.StandardGeneratorContext.runGeneratorIncrementally(StandardGeneratorContext.java:647)
[INFO]  at com.google.gwt.dev.cfg.RuleGenerateWith.realize(RuleGenerateWith.java:41)
[INFO]  at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.rebind(StandardRebindOracle.java:78)
[INFO]  at com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.java:268)
[INFO]  at com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.java:257)
[INFO]  at com.google.gwt.dev.DistillerRebindPermutationOracle.getAllPossibleRebindAnswers(DistillerRebindPermutationOracle.java:91)
[INFO]  at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.doFindAdditionalTypesUsingRebinds(WebModeCompilerFrontEnd.java:96)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.process(AbstractCompiler.java:254)
[INFO]  at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:444)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.compile(AbstractCompiler.java:173)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.compile(AbstractCompiler.java:288)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.access$400(AbstractCompiler.java:139)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler.compile(AbstractCompiler.java:588)
[INFO]  at com.google.gwt.dev.jdt.BasicWebModeCompiler.getCompilationUnitDeclarations(BasicWebModeCompiler.java:97)
[INFO]  at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.getCompilationUnitDeclarations(WebModeCompilerFrontEnd.java:52)
[INFO]  at com.google.gwt.dev.jjs.JavaToJavaScriptCompiler.precompile(JavaToJavaScriptCompiler.java:569)
[INFO]  at com.google.gwt.dev.jjs.JavaScriptCompiler.precompile(JavaScriptCompiler.java:33)
[INFO]  at com.google.gwt.dev.Precompile.precompile(Precompile.java:284)
[INFO]  at com.google.gwt.dev.Precompile.precompile(Precompile.java:233)
[INFO]  at com.google.gwt.dev.Precompile.precompile(Precompile.java:145)
[INFO]  at com.google.gwt.dev.Compiler.run(Compiler.java:232)
[INFO]  at com.google.gwt.dev.Compiler.run(Compiler.java:198)
[INFO]  at com.google.gwt.dev.Compiler$1.run(Compiler.java:170)
[INFO]  at com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:88)
[INFO]  at com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java:82)
[INFO]  at com.google.gwt.dev.Compiler.main(Compiler.java:177)
[INFO] Caused by: javax.validation.ValidationException: Unable to get available provider resolvers.
[INFO]  at javax.validation.Validation$GenericBootstrapImpl.configure(Validation.java:259)
[INFO]  at javax.validation.Validation.buildDefaultValidatorFactory(Validation.java:111)
[INFO]  at com.google.gwt.validation.rebind.BeanHelper.<clinit>(BeanHelper.java:61)
[INFO]  ... 31 more
[INFO] Caused by: javax.validation.ValidationException: Unable to load Bean Validation provider org.hibernate.validator.HibernateValidator
[INFO]  at javax.validation.Validation$DefaultValidationProviderResolver.getValidationProviders(Validation.java:349)
[INFO]  at javax.validation.Validation$GenericBootstrapImpl.configure(Validation.java:256)
[INFO]  ... 33 more
[INFO] Caused by: java.lang.ClassNotFoundException: org.hibernate.validator.HibernateValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
... 

And compilation fails due to Gin injector compilation with java.lang.ExceptionInInitializerError. 

--- Significant POM sections: ---

<dependencies>
<!-- Hibernate-validator -->


<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
<!-- <scope>provided</scope> -->
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>

<!-- Use the JSR 330 injection interfaces -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>

<!-- GWT dependencies -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.web.bindery</groupId>
<artifactId>requestfactory-server</artifactId>
<version>${gwt.version}</version>
</dependency>

--- Plugins configuration.

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/apt</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
<configuration>
<logLevel>INFO</logLevel>

<port>${gae.port}</port>


<compileTargets>
<value>com.module.Module</value>
</compileTargets>

<server>com.google.appengine.tools.development.gwt.AppEngineLauncher
</server>

<runTarget>/Module.jsp</runTarget>
<style>OBFUSCATED</style>
<webXml>war/WEB-INF/web.xml</webXml>
<gwtVersion>${gwt.version}</gwtVersion>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/1JE34Ru9pncJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: gwt 2.5 - Elemental -> Browser compatibility question ?



On Friday, June 29, 2012 10:18:54 PM UTC+2, regnoult axel wrote:
Hello,

Reading the official documentation  :

it is said that :

 Using these draft-spec extensions may result in code that doesn't work on Firefox, Opera, or IE. 

My question, is that, for my current project that will be in production in 1 or 2 month, should I use Elementals ?

1 or 2 months? I wouldn't use too much experimental stuff then (except SuperDevMode, but that's an experimental dev tool, it's not part of the final app)
 
I need a compatibility with IE 7 and greater versions, Chrome and Firefox.

IE is a no-go for Elemental. IE9 might be envisaged, if you stick to the very basics (but then you'd better use com.google.gwt.dom, HTMLPanel/RenderablePanel and CellWidget).
 
I also did found a lot of documentation about elemental (neither how to use it, ..., neither inside the javadoc)

Elemental landed just 2 (or was it 3) weeks ago, and then Ray had to concentrate on I/O, and the rest of the team on shipping that 2.5.0 RC1; it's definitely too early to make use of Elemental other than trying it out and/or willing to help make it better.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/x-HcyHbNifcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Any summary on The History and Future of Google Web Toolkit available?

There seems to be some news.  Try this: https://twitter.com/#!/search/GWT?q=GWT

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/cvTVNQiDvm8J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

gwt 2.5 - Elemental -> Browser compatibility question ?

Hello,

Reading the official documentation  :

it is said that :

 Using these draft-spec extensions may result in code that doesn't work on Firefox, Opera, or IE. 

My question, is that, for my current project that will be in production in 1 or 2 month, should I use Elementals ? I need a compatibility with IE 7 and greater versions, Chrome and Firefox.

I also did found a lot of documentation about elemental (neither how to use it, ..., neither inside the javadoc)

Thanks you.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/hRoWilO-nPMJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Any summary on The History and Future of Google Web Toolkit available?

+1

2012/6/29 Clint Checketts <checketts@gmail.com>
I was hoping to see the Google IO session streamed: The History and Future of Google Web Toolkit, but apparently it wasn't available.

Any summaries folks care to post from that session? Feel free to post a link to the video once its available if you see it.

Thanks,

-Clint

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Any summary on The History and Future of Google Web Toolkit available?

I was hoping to see the Google IO session streamed: The History and Future of Google Web Toolkit, but apparently it wasn't available.

Any summaries folks care to post from that session? Feel free to post a link to the video once its available if you see it.

Thanks,

-Clint

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

How to load image such as : https://developers.google.com/showcase/ ?

Hello,

My current project (www.mananaseguro.com), at the home page I need to load a gallery of various poster's event. So I would like to simulate the following behavior in term of "loading time": 

 - A first short load time (download gwt app..), and then the user arrive on the home page.
 - Then the user wait and can see the images loading progressively (such as  https://developers.google.com/showcase/)

In my case, the user wait a lot a the begenning (the first load time refered previously), and then arrive at the home page and can see all the images already loaded. I do not want this behavior because the user wait a lot before he can surf on the website. 

I do not know exactly how this technique is called (maybe "lazy loading image") ?
I use code splitting (easy with GWTP), but I do not know if it is related to the load of the images ?
Could you explain me how to do this ?

Thanks you,



--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/pliCuSvsy8wJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: reordering of column in celltable



On Friday, June 29, 2012 7:35:57 PM UTC+2, tong123123 wrote:
I think it is common to allow user to change the column ordering in a table, but no method to do it in GWT?

Have you seen a single Google product with reorderable columns? most of them don't even have sortable columns…
No I'm afraid it's not "that common"; and there are several ways of implementing it (including many without drag-and-drop) 

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/1LFT6ENwVSUJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: reordering of column in celltable

anyone has idea?
in fact, for the first requirement, I see GXT can do it as following link
http://www.sencha.com/examples/#ExamplePlace:basicgrid
but GXT can do it but GWT cannot?

I think it is common to allow user to change the column ordering in a table, but no method to do it in GWT?

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/GQJy_qxZhTcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Is there a trick to dragging a PushButton?

I have a PushButton widget with an up-face image that I'd like to respond to clicks as well as allowing the button to be dragged to another application.  If I create the Image used for the up-face without including it in the PushButton, it drags with the correct drag image and drag data.  If I put the same Image on the face of a PushButton, it can no longer be dragged.  If I move the DragStartHandler to the PushButton, it still can't be dragged.

I'm guessing that perhaps the way the PushButton processes click events might stop the propagation of the event before I get a DragStartEvent, but right now I'm pretty lost.

Thanks, smoyer

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/iH5svRu2PuYJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: "..Something other than an int was returned.." warnings in DevMode



On Friday, June 29, 2012 4:39:28 PM UTC+2, Joseph Lust wrote:
I noticed getting this issue myself last week. Thanks for solving it for me Thomas. The page in question was using. 
-moz-transform: scale3d(1.21098, 1.21098, 1);

Hopefully ClientRect can be updated to correct this defect in the near future.

The "obvious fix" would be to make the methods' return type 'double' instead of 'int', but unfortunately that would be a breaking change (albeit a small one), so I'm not sure how to best fix this.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/QOc5LvcOzcoJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Runtime extensions to a GWT application

Joseph,

Thanks for pointing us to UIChild...looks interesting and hopefully meets our needs since it was the only suggestion we got.

Best,
Kevin

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/r0v3oISNKi0J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: google maps

This example does what you mention, with thousands of markers rendered into the map tiles to prevent browser overhead.

Sincerely,
Joseph

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/Bj6NaAYxUqIJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: google maps

Kyle,

Checkout the Google Maps Fusion Tables API. It is meant for working with very large amounts of data on the maps.

Sincerely,
Joseph

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/wYY8wktjdL4J.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: Cell-Backed Widgets

It actually wouldn't surprise me if the buttons in Google Groups were com.google.gwt.widget.client.TextButton-s or similar, with a Groups-specific Appearance.
Decoration.PRIMARY would be red (new topic or post reply) or green (post) depending on context.
That button is the only (built-in) one supporting "collapsing" (IsCollapsible) as used in the overview/discussion or tree/flat "switches" (mutually exclusive pairs of toggle buttons), or the "post reply" and its "split button" to open the drop down menu; so it might very well be that they're using them, and maybe created a few others that haven't been open sourced.

On Friday, June 29, 2012 5:13:10 AM UTC+2, July wrote:
HI all:

I found one doc from GWT offcial wiki page, it's about cell-backed widgets:

The idea in this doc is really nice, however seem GWT does not continue with this idea? in this package:
com.google.gwt.widget.client
there are merely only one of the "modern widget" since 2011.

I think It would be very regretful if GWT team quit this wonderful design pattern.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/A1uQYe-aetcJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

Re: "..Something other than an int was returned.." warnings in DevMode



On Friday, June 29, 2012 11:46:47 AM UTC+2, Flori wrote:
Hey all,

I have absolutley no idea why this warning appears.. maybe someone of u can give me an answer or a hint in the correct direction:

[WARN] [pacadm] - Something other than an int was returned from JSNI method '@com.google.gwt.dom.client.DOMImplStandardBase$ClientRect::getLeft()': Rounding double (5.454545021057129) to int for int

DevMode is still working.. but these warnings are endless (they don't appear in the javascript console)! I'm using gxt 2.2.5 along with gwt 2.4 (same with gwt 2.5 RC1).

Most probably you've zoomed in or out of your page, so you end up with sub-pixel dimensions.
See http://code.google.com/p/google-web-toolkit/issues/detail?id=6130

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/SNH6_AvRAGgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

gwt-maven-plugin+GWT 240+hibernate-validator compilation problem

Hi all, 

I'm trying to mavenize my project that uses gwt 2.4.0 and hibernate-validator (+ Editors, RequestFactory, GIN if it makes any sense) for client-side validations. Non-mavenized project compiles and runs fine. 
Mavenized project gives a set of simmilar errors (below) during gwt:compile that correspond to validation. 

The reason obviously is in my POM but I can't figure out why. Significant POM parts are below. 
Please help me! I'm stuck for 3 days already! 
Thanks to all in advance!
Igory.

--- mvn gwt:compile output---
 
[INFO] Compiling module com.module.Module
[INFO]    Validating newly compiled units
[INFO]       Ignored 8 units with compilation errors in first pass.
[INFO] Compile with -strict or with -logLevel set to TRACE or DEBUG to see all errors.
[INFO]    Resolving org.hibernate.validator.constraints.CreditCardNumber
[INFO]       Found type 'org.hibernate.validator.constraints.CreditCardNumber'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.CreditCardNumberValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.CreditCardNumberValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
... 
[INFO]          [ERROR] Annotation error: expected class java.lang.Class, got null
[INFO]    Resolving org.hibernate.validator.constraints.Email
[INFO]       Found type 'org.hibernate.validator.constraints.Email'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.EmailValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.EmailValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
... 
[INFO]          [ERROR] Annotation error: expected class java.lang.Class, got null
[INFO]    Resolving org.hibernate.validator.constraints.NotBlank
[INFO]       Found type 'org.hibernate.validator.constraints.NotBlank'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.NotBlankValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.NotBlankValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
...
[INFO]          [ERROR] Annotation error: expected class java.lang.Class, got null
[INFO]    Resolving org.hibernate.validator.constraints.ScriptAssert
[INFO]       Found type 'org.hibernate.validator.constraints.ScriptAssert'
[INFO]          [ERROR] Annotation error: cannot resolve org.hibernate.validator.constraints.impl.ScriptAssertValidator
[INFO] java.lang.ClassNotFoundException: org.hibernate.validator.constraints.impl.ScriptAssertValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
[INFO]  at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
[INFO]  at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
[INFO]  at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
[INFO]  at java.lang.Class.forName0(Native Method)
[INFO]  at java.lang.Class.forName(Class.java:247)
...
[INFO]    [ERROR] Errors in 'file:/home/igory/workspace/com/module/client/validation/MyValidationFactory.java'
[INFO]       [ERROR]  Internal compiler error
[INFO] java.lang.ExceptionInInitializerError
[INFO]  at com.google.gwt.validation.rebind.AbstractCreator.createBeanHelper(AbstractCreator.java:72)
[INFO]  at com.google.gwt.validation.rebind.ValidatorCreator.<init>(ValidatorCreator.java:62)
[INFO]  at com.google.gwt.validation.rebind.ValidatorGenerator.generate(ValidatorGenerator.java:68)
[INFO]  at com.google.gwt.core.ext.GeneratorExtWrapper.generate(GeneratorExtWrapper.java:48)
[INFO]  at com.google.gwt.core.ext.GeneratorExtWrapper.generateIncrementally(GeneratorExtWrapper.java:60)
[INFO]  at com.google.gwt.dev.javac.StandardGeneratorContext.runGeneratorIncrementally(StandardGeneratorContext.java:647)
[INFO]  at com.google.gwt.dev.cfg.RuleGenerateWith.realize(RuleGenerateWith.java:41)
[INFO]  at com.google.gwt.dev.shell.StandardRebindOracle$Rebinder.rebind(StandardRebindOracle.java:78)
[INFO]  at com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.java:268)
[INFO]  at com.google.gwt.dev.shell.StandardRebindOracle.rebind(StandardRebindOracle.java:257)
[INFO]  at com.google.gwt.dev.DistillerRebindPermutationOracle.getAllPossibleRebindAnswers(DistillerRebindPermutationOracle.java:91)
[INFO]  at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.doFindAdditionalTypesUsingRebinds(WebModeCompilerFrontEnd.java:96)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.process(AbstractCompiler.java:254)
[INFO]  at org.eclipse.jdt.internal.compiler.Compiler.compile(Compiler.java:444)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.compile(AbstractCompiler.java:173)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.compile(AbstractCompiler.java:288)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler$Sandbox$CompilerImpl.access$400(AbstractCompiler.java:139)
[INFO]  at com.google.gwt.dev.jdt.AbstractCompiler.compile(AbstractCompiler.java:588)
[INFO]  at com.google.gwt.dev.jdt.BasicWebModeCompiler.getCompilationUnitDeclarations(BasicWebModeCompiler.java:97)
[INFO]  at com.google.gwt.dev.jdt.WebModeCompilerFrontEnd.getCompilationUnitDeclarations(WebModeCompilerFrontEnd.java:52)
[INFO]  at com.google.gwt.dev.jjs.JavaToJavaScriptCompiler.precompile(JavaToJavaScriptCompiler.java:569)
[INFO]  at com.google.gwt.dev.jjs.JavaScriptCompiler.precompile(JavaScriptCompiler.java:33)
[INFO]  at com.google.gwt.dev.Precompile.precompile(Precompile.java:284)
[INFO]  at com.google.gwt.dev.Precompile.precompile(Precompile.java:233)
[INFO]  at com.google.gwt.dev.Precompile.precompile(Precompile.java:145)
[INFO]  at com.google.gwt.dev.Compiler.run(Compiler.java:232)
[INFO]  at com.google.gwt.dev.Compiler.run(Compiler.java:198)
[INFO]  at com.google.gwt.dev.Compiler$1.run(Compiler.java:170)
[INFO]  at com.google.gwt.dev.CompileTaskRunner.doRun(CompileTaskRunner.java:88)
[INFO]  at com.google.gwt.dev.CompileTaskRunner.runWithAppropriateLogger(CompileTaskRunner.java:82)
[INFO]  at com.google.gwt.dev.Compiler.main(Compiler.java:177)
[INFO] Caused by: javax.validation.ValidationException: Unable to get available provider resolvers.
[INFO]  at javax.validation.Validation$GenericBootstrapImpl.configure(Validation.java:259)
[INFO]  at javax.validation.Validation.buildDefaultValidatorFactory(Validation.java:111)
[INFO]  at com.google.gwt.validation.rebind.BeanHelper.<clinit>(BeanHelper.java:61)
[INFO]  ... 31 more
[INFO] Caused by: javax.validation.ValidationException: Unable to load Bean Validation provider org.hibernate.validator.HibernateValidator
[INFO]  at javax.validation.Validation$DefaultValidationProviderResolver.getValidationProviders(Validation.java:349)
[INFO]  at javax.validation.Validation$GenericBootstrapImpl.configure(Validation.java:256)
[INFO]  ... 33 more
[INFO] Caused by: java.lang.ClassNotFoundException: org.hibernate.validator.HibernateValidator
[INFO]  at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
[INFO]  at java.security.AccessController.doPrivileged(Native Method)
... 

And compilation fails due to Gin injector compilation with java.lang.ExceptionInInitializerError. 

--- Significant POM sections: ---

<dependencies>
<!-- Hibernate-validator -->


<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
</dependency>
<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
<version>1.0.0.GA</version>
<classifier>sources</classifier>
<!-- <scope>provided</scope> -->
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
</exclusions>
<classifier>sources</classifier>
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
<classifier>sources</classifier>
<scope>provided</scope>
</dependency>

<!-- Use the JSR 330 injection interfaces -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
<version>1</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.6.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.1</version>
</dependency>

<!-- GWT dependencies -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.web.bindery</groupId>
<artifactId>requestfactory-server</artifactId>
<version>${gwt.version}</version>
</dependency>

--- Plugins configuration.

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/apt</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
<configuration>
<logLevel>INFO</logLevel>

<port>${gae.port}</port>


<compileTargets>
<value>com.module.Module</value>
</compileTargets>

<server>com.google.appengine.tools.development.gwt.AppEngineLauncher
</server>

<runTarget>/Module.jsp</runTarget>
<style>OBFUSCATED</style>
<webXml>war/WEB-INF/web.xml</webXml>
<gwtVersion>${gwt.version}</gwtVersion>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/lyDzB5yUAfgJ.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.