Re: Gwt JSNI error

2016-08-27 Thread Dhinakar Reddy Pothireddi
Thank you. It worked. On Sunday, August 28, 2016 at 5:24:41 AM UTC+5:30, Jens wrote: > > Your method is static but your are using "this.@" in your JSNI code which > will not point to TestProj. If you want to keep it static then you have to > provide a TestProj instance as second parameter and ca

Re: Gwt JSNI error

2016-08-27 Thread Jens
Your method is static but your are using "this.@" in your JSNI code which will not point to TestProj. If you want to keep it static then you have to provide a TestProj instance as second parameter and call "testProjParam.@". Otherwise just make it an instance method by removing "static". -

Gwt JSNI error

2016-08-27 Thread Dhinakar Reddy Pothireddi
This is my JSNI code where I need to call the onFlip() method in the JSNI code public static native void copyFrom(String s) /*-{ this.@com.dhinakar.TestProj::onFlip(Ljava/lang/String;)(s); }-*/; private void onFlip(String flippedName) { Window.alert(flippedName); } I am facin

Re: gwt-material 1.6.0 is now available

2016-08-27 Thread Rodrigue Lagoué Rodrigue
great work On Sat, 27 Aug 2016 at 07:22 maticpetek wrote: > Thank you. Really good work > > > On Friday, August 26, 2016 at 7:30:43 AM UTC+2, mark kevin ringor wrote: >> >> Hi everyone, >> >> Here comes the release of 1.6.0 on gwt-material projects: >> >> #gwt-material

Re: How to declare standard java libraries dependencies to the GWT compiler with the tbroyer maven plugin?

2016-08-27 Thread Bruno Salmon
Thanks Ignacio, I understood your plugin won't disappear but as I'm upgrading a project to the future GWT way (removing widgets, using elemental, etc...), it's the opportunity to include this migration as well. Thanks Thomas, I was focusing on the plugin goals pages and didn't notice the answer

Re: How to declare standard java libraries dependencies to the GWT compiler with the tbroyer maven plugin?

2016-08-27 Thread Ignacio Baca Moreno-Torres
I updated the 'deprecation notice', deprecation is a strong word and people get scared that the plugin is going to disappear. But the idea is the same, you should migrate if you can, so thanks Bruno Salmon to try it out! On Friday, August 26, 2016 at 4:51:21 PM UTC+2, Thomas Broyer wrote: > > >