Re: Step-by-step debug configurations for GWT application in Spring Tool Suite (STS) IDE

2015-12-01 Thread foal
Hi, Look at http://gwt-plugins.github.io/documentation All this staff works with latest GWT (2.7.0). But there are some schemes and diagrams that will help you understand the main idea :) P.S. Try to upgrade GWT to 2.7 :) Stas On Saturday, November 28, 2015 at 11:46:18 AM UTC+1,

Re: GWT Maven Project in Eclipse

2017-02-04 Thread foal
Hey Cristina, Not sure that it will help you, but I have maven projects in Eclipse (STS 3.8.3 + GWT plugin). Usually, I import the project to Eclipse as a maven project and Eclipse automatically recognizes the GWT and WAR facets (pom.xml has WAR packaging and gwt-maven-plugin). Best, Stas

Re: References to Class method works incorrectly

2017-01-27 Thread foal
Issue in GWT project https://github.com/gwtproject/gwt/issues/9483 Stas On Saturday, January 28, 2017 at 8:32:48 AM UTC+1, foal wrote: > > Hi, > > I have in code the following lines (few of `Panel` classes implements > `TagAware` interface): > > ```Java > private fi

References to Class method works incorrectly

2017-01-27 Thread foal
Hi, I have in code the following lines (few of `Panel` classes implements `TagAware` interface): ```Java private final Map panels; //... panels .values() .stream() .filter(TagAware.class::isInstance) .map(TagAware.class::cast) .forEach(t ->

Re: New GWT app (ios, android, www) : Learn to children how to calculate !

2016-10-21 Thread foal
Hi, Cool! Is it opensource? Do you use the GWT for the mobile applications too? Best, Stas On Wednesday, October 19, 2016 at 2:27:24 PM UTC+2, Bruno Nogent wrote: > > If you have children ! > > iOS version : > https://itunes.apple.com/fr/app/arithmo/id1136900923?mt=8 > > Android version : >

Strange error with streams

2016-11-01 Thread foal
Hi, Why the following code throw runtime exception ConsoleLogger.java:32 ReferenceError: jQw_g$ is not defined at MCw_g$.RCw_g$ [as createButtons_5_g$] (MessageBox.java:57) Stream.of(actions).map(this::createButton).forEach(p::add); while the classic equivalent works without errors

Re: Strange error with streams

2016-11-01 Thread foal
Simplified widget is in attachment. Mehod createButtons contains the the problem code. Let me know if you need something else. Stas On Tuesday, November 1, 2016 at 11:13:41 AM UTC+1, Jens wrote: > > Use -style PRETTY as SDM parameter so that the JS code is more readable. > > Looks like a GWT

Re: Strange error with streams

2016-11-03 Thread foal
Hi Andrey, Tried to create simple project with given classes - all works as desired. Best, Stas On Wednesday, November 2, 2016 at 2:38:25 PM UTC+1, foal wrote: > > Hi Andrey, > > No problem, even a little bit latter. > > Please note that I have use GWT 2.8RC3 and prelease

SafeHtml as return for com.google.gwt.i18n.client.Messages and GET 2.8

2016-11-02 Thread foal
Hi, I have changed the return type from String to SafeHtml in my resources and take unexpected behavior - "not a function" in log So original code @DefaultLocale("en") public interface ComplexText extends Messages { @Nonnull @DefaultMessage("Employees") String employees(); }

Re: Strange error with streams

2016-11-02 Thread foal
gt; Hi foal, > > We had kind of similar problems when implemented Stream support but I > cannot reproduce it now > in a simple test like > https://gist.github.com/nordligulv/9dfa0ca5ccfed3def097aefc59ea1e32 > > Can I ask you to create simple maven project with th

JavaScriptObject as a parameter in method of native @JsType

2016-10-11 Thread foal
Hi, I tried to find some information regards the topic but found nothing :) TLDR: Yes, it works. Who can need it? For example GWT has support for canvas and JS library has function that takes the 2d context as a parameter. So you can ease define the JsType wrapper and simple pass the

Re: First experience using GWT Boot in my Java Devs Training

2018-05-24 Thread foal
Hi, I also think that Maven is not a bad choice for the most of projects and personally use it for all my projects. But support the Gradle is not a bad idea :) If you need more information about GWT + Gradle you can ask Thomas Broyer, as I know he is a big enthusiast of the Gradle. Stas On

Re: external javascript library

2018-01-23 Thread foal
Hi, You can find more examples with JsInterop on https://gwt.zeef.com/awesomegwt#block_104342_jsinterop-wrapper. It is a list of existing JsInterop wrapper with links to the sources on GitHub or Bitbucket. Stas On Wednesday, January 17, 2018 at 10:34:32 AM UTC+1, Jens wrote: > > > but it's

Re: Preferred IDE

2018-10-24 Thread foal
Hi, I am using Eclipse (STS 4.0) with GWT plugin and it just works. Stas On Saturday, October 13, 2018 at 5:22:46 PM UTC+2, subroutines wrote: > > Hi, > > I am curious to know what is preferred IDE to use GWT? > -- You received this message because you are subscribed to the Google Groups

Immutables with RestyGWT and gwt-jackson

2019-04-02 Thread foal
Hi, Spent several hours to make workable Immutables ( https://immutables.github.io) objects with RestyGWT and gwt-jackson. Default approach with @JsonSerialize(as = ImmutableVal.class) @JsonDeserialize(as = ImmutableVal.class) doesn't works (gwt-jackson ignore @JsonDeserialize "as" attribute

Re: Immutables with RestyGWT and gwt-jackson

2019-04-03 Thread foal
, April 2, 2019 at 10:03:28 PM UTC+3, foal wrote: >> >> Hi, >> >> Spent several hours to make workable Immutables ( >> https://immutables.github.io) objects with RestyGWT and gwt-jackson. >> Default approach with >> >> @JsonSerialize(as =

Re: Immutables with RestyGWT and gwt-jackson

2019-04-07 Thread foal
Ahmad Bawaneh wrote: > > Thanks , this is exactly what i need to know, i am adding support for > annotations incrementally. > > On Wednesday, April 3, 2019 at 10:24:30 AM UTC+3, foal wrote: >> >> Hi, >> >> >> A relatively simple project is on Bitbucket:

Re: Security Vulnerability Detected in GWT Library

2019-05-01 Thread foal
Easly to update in upcoming releases than explain each other that it isn't critical :) BTW GWT-RPC user protobuf? Thought about replacing REST with Protobuf but did not find ready to use solution (Java <-> GWT with APT generators). Stas. On Wednesday, April 10, 2019 at 10:28:23 AM UTC+2,

Re: Immutables with RestyGWT and gwt-jackson

2019-04-24 Thread foal
BTW due to https://github.com/gwtproject/gwt/issues/9612 it works only with Java8 in GWT 2.8.2 S. On Tuesday, April 2, 2019 at 9:03:28 PM UTC+2, foal wrote: > > Hi, > > Spent several hours to make workable Immutables ( > https://immutables.github.io) objects with RestyGWT

Re: [ANN] (Unofficial) Elemental2 2.26 release

2019-10-26 Thread foal
Hi, Do you have a rebranded release on GWT 2.9 too? Best, Stas On Thursday, October 17, 2019 at 4:02:53 AM UTC+2, Peter Donald wrote: > > Unfortunately, 2.26 is not compatible with GWT 2.8.2 - we were testing > with a later version of GWT and I did not pick this up before I sent the > mail.

Re: i18n Failing

2020-01-31 Thread foal
Hi, For EN and DE I have the following extend-property - add support for a specific locale, set-property, in the end, sets the "default" locale. Best, Stas On Friday, January 31, 2020 at 10:36:48 AM UTC+1, Andrew Buck wrote: > > I am trying to add a second locale to my GWT app,

Re: [ANN] Sting v0.13 (Beta) release

2020-04-05 Thread foal
Hi, Does Sting support the GWT "Code Splitting"? ( http://www.gwtproject.org/doc/latest/DevGuideCodeSplitting.html), I tried to migrate from GIN to the Dagger, but it was the main issue why I still use the GIN. With Dagger, I had tried to do the same as

java.util.time emulation

2020-04-28 Thread foal
Hi, I adapted the ThreeTen backport project to the GWT. Project mirror on GitHub is https://github.com/foal/gwt-time Release: https://search.maven.org/artifact/org.jresearch.gwt.time/org.jresearch.gwt.time/1.4.3/gwt-lib Allows using classes from java.util.time package in GWT client code

Re: java.io.IOException: Cannot run program "C:\J8\jre\bin\java": CreateProcess error=206

2020-05-02 Thread foal
Hi, Usually, when I have such a problem, I am creating a link (directory junction) from the project folder to the root of drive c: (e.g. C:\Development\work\repo\github\foal\gwt-typedarrays -> c:\a) and try to build from the new location. Not sure that this helps you, but your question la

[ANN] JRS gwt-time 1.4.5 release

2020-05-02 Thread foal
Hi, The new version of GWT emulation for JRE java.util.time package was released. Project page: https://github.com/foal/gwt-time Maven dependency: org.jresearch.gwt.time org.jresearch.gwt.time 1.4.5 What's new: - Time zone DB was updated to 2020a (backport from https

Re: [ANN] JRS gwt-time 1.4.5 release

2020-05-02 Thread foal
-standalone weekdays? Stas On Saturday, May 2, 2020 at 9:58:30 AM UTC+2, foal wrote: > > Hi, > > The new version of GWT emulation for JRE java.util.time package was > released. > > Project page: https://github.com/foal/gwt-time > > Maven dependency: > &

[ANN] JRS gwt-time 1.4.6 release

2020-05-03 Thread foal
Hi, JRS gwt-time 1.4.6 was released - details https://github.com/foal/gwt-time/releases/tag/1.4.6 Check readme.md, I added a new section "Unimplemented or partial implemented features" (https://github.com/foal/gwt-time#unimplementet-or-partial-implemented-features) Best, Sta

Re: java.io.IOException: Cannot run program "C:\J8\jre\bin\java": CreateProcess error=206

2020-05-04 Thread foal
AM UTC+2, foal wrote: > > Hi, > > Instead of the link (btw I use Far Manager), you try to move the project, > or better checkout sources to c:\a and create a new one (the old project > can have a hardcoded path to old location). If it will not help you need to > find out th

Re: java.io.IOException: Cannot run program "C:\J8\jre\bin\java": CreateProcess error=206

2020-05-04 Thread foal
Hi, Also, take into account that issue maybe in GWT generated code, so check it also. Usually some TEMP/..., but you can set it with parameter -gen -gen location to where you want it to generate code, could be any temp path Stas On Monday, May 4, 2020 at 11:52:58 AM UTC+2, foal

Re: java.io.IOException: Cannot run program "C:\J8\jre\bin\java": CreateProcess error=206

2020-05-04 Thread foal
Hi, Instead of the link (btw I use Far Manager), you try to move the project, or better checkout sources to c:\a and create a new one (the old project can have a hardcoded path to old location). If it will not help you need to find out the reason and refactor your code to eliminate too long

[ANN] JRS gwt-time 1.4.8 release

2020-05-10 Thread foal
Hi, JRS gwt-time 1.4.8 was released - details on https://github.com/foal/gwt-time/releases/tag/1.4.8 Best, Stas -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, sen

Re: [ANN] JRS gwt-time 1.4.8 release

2020-05-13 Thread foal
t object as argument). > > On Monday, May 11, 2020 at 12:35:14 AM UTC+2, foal wrote: >> >> Hi, >> >> JRS gwt-time 1.4.8 was released - details on >> https://github.com/foal/gwt-time/releases/tag/1.4.8 >> >> Best, >> Stas >> > -- You re

Re: [ANN] JRS gwt-time 1.4.8 release

2020-05-13 Thread foal
e we cannot "polyfill" Java classes, we should use "ponyfills" > instead (i.e. helper methods where you pass the target object as argument). > > On Monday, May 11, 2020 at 12:35:14 AM UTC+2, foal wrote: >> >> Hi, >> >> JRS gwt-time 1.4.8 was rel

Re: [ANN] JRS gwt-time 1.4.8 release

2020-05-14 Thread foal
) { //bla-bla-bla return result; } } And ask users to call this method if they want to provide other Locale than ROOT and US? And do it for ALL methods that take java.util.Locale as an argument? Best, Stas. On Thursday, May 14, 2020 at 7:30:11 AM UTC+2, foal wrote: > > Hi, > >

Re: [ANN] JRS gwt-time 1.4.8 release

2020-05-14 Thread foal
Hmm, But the main issue that I have how to *create the Locale* object to pass it into the methods. The rest is possible to solve somehow. Stas On Thursday, May 14, 2020 at 11:58:48 AM UTC+2, Thomas Broyer wrote: > > > > On Thursday, May 14, 2020 at 7:30:11 AM UTC+2, foal wro

Re: [ANN] JRS gwt-time 1.4.8 release

2020-05-14 Thread foal
It is also the way, but with HUGE drawback for me - I can't work with SNAPSHOT, and there is no schedule for GWT releases. I hope with a new release it will change. Stas. On Thursday, May 14, 2020 at 9:33:25 AM UTC+2, Jens wrote: > > > Is there any way to correctly extend/replace core GWT

[ANN] JRS gwt-time 1.4.10 release

2020-05-27 Thread foal
Hi, JRS gwt-time 1.4.1 was released - details on https://github.com/foal/gwt-time/releases/tag/1.4. <https://github.com/foal/gwt-time/releases/tag/1.4.8>10 The main point - use CLDR for missing localization data, README was updated with localization section Best, Stas -- You re

Re: [ANN] JRS gwt-time 1.4.10 release

2020-05-28 Thread foal
Hi, The correct link is https://github.com/foal/gwt-time/releases/tag/1.4.10 Stas On Wednesday, May 27, 2020 at 9:16:06 PM UTC+2, foal wrote: > > Hi, > > JRS gwt-time 1.4.1 was released - details on > https://github.com/foal/gwt-time/releases/tag/1.4. > <https://git

[ANN] JRS gwt-time 1.4.13/2.0.1 release

2020-10-28 Thread foal
Hi, JRS gwt-time 1.4.13/2.0.1 was released - details on https://github.com/foal/gwt-time/releases/tag/v1.4.13 and https://github.com/foal/gwt-time/releases/tag/v2.0.1 The main point - migrate to org.treblereel.gwt.nio:gwt-nio and slf4j dependencies fix Best, Stas -- You received

[ANN] JRS gwt-time 1.4.12/2.0.0 release

2020-10-26 Thread foal
Hi, JRS gwt-time 1.4.12/2.0.0 was released - details on https://github.com/foal/gwt-time/releases/tag/v1.4.12 and https://github.com/foal/gwt-time/releases/tag/v2.0.0 The main point - GWT 2.9.0 support Best, Stas -- You received this message because you are subscribed to the Google Groups

[ANN] JRS gwt-time 1.4.15/2.0.3 release

2020-12-12 Thread foal
Hi, JRS gwt-time 1.4.15/2.0.3 was released - details on https://github.com/foal/gwt-time/releases/tag/v1.4.15 and https://github.com/foal/gwt-time/releases/tag/v2.0.3 The main point - separate library to modules: - The locale JRE emulation was moved to a separate project

Re: Running locally in Dev mode with Eclipse

2020-12-12 Thread foal
Hi, Check these pages: https://gwt-plugins.github.io/documentation/gwt-eclipse-plugin/Download.html Best, Stas On Friday, November 20, 2020 at 5:29:44 PM UTC+1 tom.v...@skynet.be wrote: > Hi, > > Did you install the ' Google Plugin for Eclipse ' as mentioned in the > instructions in

Re: [ANN] JRS gwt-time 1.4.15/2.0.3 release

2021-02-03 Thread foal
; [INFO][ERROR] Line 351: BC cannot be resolved or is not a >> field >> [INFO][ERROR] Line 340: AD cannot be resolved or is not a >> field >> [INFO] [ERROR] Hint: Check that the type name >> 'java.time.format.SimpleDat

Re: [ANN] Akasha: Typed Browser API

2021-06-14 Thread foal
Hi, do you have support for Intl API? S. On Thursday, May 27, 2021 at 1:11:21 AM UTC+2 peter.j...@gmail.com wrote: > What is Akasha? > > Akasha is a typed browser API layer that is always up to date with the > latest web specifications. These API layers are intended to simplify > writing

[ANN] JRS gwt-time 1.4.19/2.0.7 release

2021-06-10 Thread foal
://github.com/ThreeTen/threetenbp). Details are on https://github.com/foal/gwt-time/releases/tag/v1.4.19 and https://github.com/foal/gwt-time/releases/tag/v2.0.7 Project page - https://github.com/foal/gwt-time Best, Stas -- You received this message because you are subscribed to the Google

[ANN] JRS gwt-time 1.4.18/2.0.6 release

2021-04-04 Thread foal
Hi, JRS gwt-time 1.4.18/2.0.6 was released. It is a service release - updates some dependencies without significant changes in the code. Details are on https://github.com/foal/gwt-time/releases/tag/v1.4.18 and https://github.com/foal/gwt-time/releases/tag/v2.0.6 Project page - https

[ANN] JRS gwt-time 1.4.20/2.0.8 release

2022-03-30 Thread foal
Hi, JRS gwt-time 1.4.20/2.0.8 has been released. It is more or less technical release due to moving the build from Atlassian Bamboo to GitHub actions Details are on https://github.com/foal/gwt-time/releases/tag/v1.4.19 and https://github.com/foal/gwt-time/releases/tag/v2.0.7 Project page

Re: GWT Eclipse Plugin is not compatible with Eclipse 2022-03

2022-05-14 Thread foal
I am on Eclipse 4.22 (STS 4.13.1) and plugin still works (https://github.com/gwt-plugins/gwt-eclipse-plugin) On Wednesday, May 4, 2022 at 12:56:47 AM UTC+2 Craig Mitchell wrote: > I'm on Eclipse 2021-09 (4.21.0) and it works fine. > > However, after this version, the Google plugin stops

[ANN] JRS gwt-time 1.4.22/2.0.10 release

2022-10-30 Thread foal
Hi, JRS gwt-time 1.4.22/2.0.10 has been released. - TZDB 2022egtz - CLDR 42 - last updates from ThreeTen 1.6.3 release ( https://github.com/ThreeTen/threetenbp) merged. Details are on https://github.com/foal/gwt-time/releases/tag/v1.4.22 and https://github.com/foal/gwt-time

[ANN] JRS gwt-time 1.4.22/2.0.10 release

2022-10-30 Thread foal
Hi, JRS gwt-time 1.4.22/2.0.10 has been released. - TZDB 2022egtz - CLDR 42 - last updates from ThreeTen 1.6.3 release (https://github.com/ThreeTen/threetenbp) merged. Details are on https://github.com/foal/gwt-time/releases/tag/v1.4.19 and https://github.com/foal/gwt-time