build new editor framework driver to add JSON support feature to editor framework

2014-07-13 Thread saman sheikhtajian
my GWT application work with JSON instead of POJO,I want to bind my forms to JSON Objects and vise versa, is it possible add this feature to Editor framework ? How can I extends EditorDriver build new driver some thing like SimpleJsonEditorDriver ? -- You received this message because yo

Re: ConstraintViolationImpl.equals seems incorrect. Please verify / confirm.

2014-07-13 Thread Rutger van der Eijk
Done: https://code.google.com/p/google-web-toolkit/issues/detail?id=8824 On Sunday, 13 July 2014 22:56:29 UTC+2, Jens wrote: > > Please open an issue for it > > https://code.google.com/p/google-web-toolkit/issues/list > > -- J. > -- You received this message because you are subscribed to the Go

Re: ConstraintViolationImpl.equals seems incorrect. Please verify / confirm.

2014-07-13 Thread Jens
Please open an issue for it https://code.google.com/p/google-web-toolkit/issues/list -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-too

Re: ConstraintViolationImpl.equals seems incorrect. Please verify / confirm.

2014-07-13 Thread Rutger van der Eijk
Ok. Indeed this is the cause of the orginal issue I was facing. When compiling gwt 2.6.1 from scratch and modifying the equals method to: public boolean equals(Object obj) { > if (this == obj) > return true; > if (obj == null) > return false; > if (getClass() != obj.getClass()) > return false; >

Re: symbolMap file : wrong source line number ?

2014-07-13 Thread Thomas Broyer
On Sunday, July 13, 2014 8:36:59 PM UTC+2, Jens wrote: > > GWT optimizes your Java code before transforming it to JavaScript. One of > these optimizations is method inlining. In your case your Java code from > the @UiHandler method body has been inlined into the class that is > generated by th

Re: symbolMap file : wrong source line number ?

2014-07-13 Thread Jens
GWT optimizes your Java code before transforming it to JavaScript. One of these optimizations is method inlining. In your case your Java code from the @UiHandler method body has been inlined into the class that is generated by the UiBinder generator (HomeViewImpl_HomeViewImplUiBinderImpl$Widget

Re: symbolMap file : wrong source line number ?

2014-07-13 Thread 'Thomas Lacroix' via Google Web Toolkit
Hi Paul, Thanks for the reply. I managed to get the symbolMap file point to the line of the method that throws the exception by declaring the method in a java body : *myLink**.addClickHandler(new ClickHandler() {* * @Override* *