Re: Clicks taking over entire window

2017-04-10 Thread Ed
This post never showed up in my gmail account.

Has it not bee approved?

Ed

On Monday, April 10, 2017 at 7:12:31 AM UTC-4, Ed wrote:
>
> Hi,
>
> GWT 2.8
>
> I have a top menu bar and a side nav using gwt material.
>
> They both process click to a center HTML Panel.
>
> When I click a link inside the panel it takes over the whole screen.
>
> I know I can use a frame to eliminate this problem.
>
> I have tried:
> - focuspanel
> -wrapping html inside a div
>
> The html I am sending contains  html, head, and body tags.
>
> Is there anyway to force the clicks to show within the HTML that they are 
> clicked without removing topnav and sidebar without using 
> a frame?
>
> Thanks in advance.
> Ed
>

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Slow debugging with SDM

2017-04-10 Thread Jens
Yeah expanding window isn't a great idea when using GWT, too much stuff 
installed on window. There is (or was? not sure) a GWT compiler option to 
install code on the window object using namespaces (I think based on 
package structure). But could be that SDM never supported it.

Also, hitting a breakpoint the first time results in a noticeable freeze 
until I can actually start using stepping buttons (with window not 
expanded).

-- J.

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Debug library code in eclipse

2017-04-10 Thread Jens
Alternatively you can probably also change your maven settings in Eclipse 
to always download sources / javadoc artifacts as well (also useful for 
stepping into 3rd party libs), 
see: 
http://stackoverflow.com/questions/310720/get-source-jar-files-attached-to-eclipse-for-maven-managed-dependencies

That means you must also create source / javadoc artifacts for your 
library, see:

https://maven.apache.org/plugin-developers/cookbook/attach-source-javadoc-artifacts.html

-- J.

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Marcin Okraszewski
That is a nice idea. Actually compiling modules as separate entities was 
definitely something would helped. ModuleCompiler that was producing gwtar 
output, but looks like it was dropped in 2.8. 

Now I wonder if that approach is applicable to us. We have a pretty 
extensive "common" module, which provides some shared services, eg. for 
syncing data with server. Then we have also our widgets, shared resources, 
etc. Then we have modules with views of various parts of our system (eg. 
configuration, reporting, ...). Everything is a GWTP application.

I can potentially imagine that we can move implementation of GWTP 
presenters & views into those separate GWT applications, but still would 
need to make stubs for every name token in the GWTP "master" application. 
But at the end GWTP is inserting widgets into UI slots. The widgets from 
different GWT applications at the same page, would have nothing in common, 
so would they work together (put a widget from one app, into second)? I 
guess would need to expose some widget wrapper, that would pass some basic 
widget lifecycle events. And of course, each GWT app would have its version 
of base GWT widgets, as I couldn't import those from same base module into 
every app. At least unless we switched the widgets out for GWT widget 
system.

Am I on the right track? Looks really heavy refactoring ...

Thanks,
Marcin

On Monday, 10 April 2017 21:34:10 UTC+2, Daniel Kurka wrote:
>
> There is a whitelist / blacklist to control that.
>
> On Mon, Apr 10, 2017 at 12:30 PM Kirill Prazdnikov  > wrote:
>
>> As far as I know this will add lots of GWT internal stuff which I not 
>> going to export. Right ? 
>>
>> понедельник, 10 апреля 2017 г., 21:57:33 UTC+3 пользователь Daniel Kurka 
>> написал:
>>
>>> If you compile your gwt app with -generateJsInteropExports any @JsType 
>>> is accessible in global scope:
>>>

 -- 
>> 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, send an 
>> email to google-web-toolkit+unsubscr...@googlegroups.com .
>> To post to this group, send email to google-we...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/google-web-toolkit.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Jens


> As far as I know this will add lots of GWT internal stuff which I not 
> going to export. Right ? 
>

If you are willing to use master branch you can apply filters during 
compilation: 

https://github.com/gwtproject/gwt/commit/9eda5dc418f9bdfef2fd21c6113e48dd10672beb
 

-- J.

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Generator Class Name

2017-04-10 Thread J-23

W dniu 10.04.2017 o 10:46, Jens pisze:

Oh and be aware that GWT generators won't work anymore in GWT 3. So
you better use annotation processors for new code.


Thanks for the information.

Regards
J-23

--
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Slow debugging with SDM

2017-04-10 Thread Paul Stockley
Is anyone else having serious performance problems when stepping through 
SDM code in chrome? The issue happens in cases where this is mapped to the 
window object and chrome want to expand all the globals in the inspection 
window.

There is a chrome issue logged 
https://bugs.chromium.org/p/chromium/issues/detail?id=463451=component%3APlatform%3EDevTools%3EJavaScript%20=ID%20Pri%20M%20Stars%20ReleaseBlock%20Component%20Status%20Owner%20Summary%20OS%20Modified=100

Maybe we should all star the issue.

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Daniel Kurka
There is a whitelist / blacklist to control that.

On Mon, Apr 10, 2017 at 12:30 PM Kirill Prazdnikov 
wrote:

> As far as I know this will add lots of GWT internal stuff which I not
> going to export. Right ?
>
> понедельник, 10 апреля 2017 г., 21:57:33 UTC+3 пользователь Daniel Kurka
> написал:
>
> If you compile your gwt app with -generateJsInteropExports any @JsType is
> accessible in global scope:
>
>
> --
> 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, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Kirill Prazdnikov
As far as I know this will add lots of GWT internal stuff which I not going 
to export. Right ? 

понедельник, 10 апреля 2017 г., 21:57:33 UTC+3 пользователь Daniel Kurka 
написал:
>
> If you compile your gwt app with -generateJsInteropExports any @JsType is 
> accessible in global scope:
>
>>
>>

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Daniel Kurka
If you compile your gwt app with -generateJsInteropExports any @JsType is
accessible in global scope:

Exporting app:

package foo;

@JsType
public Bar {
  public Baz baz = new Baz();
}

Consuming JS:
new Bar().baz.baz1();

Consuming gwt app ( No need for -generateJsInteropExports):

@JsType(isNative = true, name = Bar, namespace = "foo")
public class Bar {
  Baz baz;
}



On Mon, Apr 10, 2017 at 11:45 AM Kirill Prazdnikov 
wrote:

> You can also use DOM Elememts as an interop types.
>
> --
> 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, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Kirill Prazdnikov
You can also use DOM Elememts as an interop types.

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Kirill Prazdnikov
The approach is very simple and easy, you use you detached GWT app like any 
other JS script.
Any GWT app is a JS script.

1st you need to define the interface of the detached module in terms of 
JsInterop: isNative = true.
You can only use Strings, numbers, arrays and isNative = true interfaces. No 
Java types.

@JsType(isNative = true)
public interface Interface {
  @JsMethod Double computeSomething(String arg);
  @JsMethod Disposable fetchData(Consumer arg);
}

2nd you implement the interface and use Window.* namespace to communicate 
between modules:

  class Exports {
@JsProperty(namespace = JsPackage.GLOBAL)
public static native void setInterface(Interface value);
  }
  Exports.setInterface(new Implementation());
 
3rd - use the interface in a main program:

  class Imports {
@JsProperty(namespace = JsPackage.GLOBAL)
public static native Interface getInterface();
  }

Runnable onLoad = () -> {
  Interface i = Imports.getInterface();
  i2.computeSomething("test1");
};

Runnable onError = () ->{
  JsGlobals.getWindow().getConsole().log("onError");
};

ModuleLoader.loadModule(
"jsExport/jsExport.nocache.js",
progressBar,
onLoad,
onError
);

Where ModuleLoader loads the script via script element: 

Document document = JsGlobals.getDocument();
HTMLScriptElement scriptElement = document.createScriptElement();
scriptElement.setSrc(name);
scriptElement.setOnerror(event -> onError.run());
scriptElement.setOnload(new State()::schedule);

document.getHead().appendChild(scriptElement);


We use timer to understand if the module loading is completed, however other 
ways are possible:

  private Runnable waitForObject = () -> {
if (isLoaded.apply()) {
  onLoad.run();
} else {
  schedule();
}
  };

  private ScheduledCommand timerCallback = () -> waitForObject.run();

  private void schedule() {
JsGlobals.getWindow().setTimeout(timerCallback, 17);
  }

You may have both modules in a single maven module, but different .gwt.xml 
files.
We unite modules for the module system testing, but not for production. 
In production we have two separate maven modules.
We use single permutation for all browsers (for Chrome) and we don`t have any 
issues with other browsers.

 
  
  



  
  


-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Compilation of a large GWT application?

2017-04-10 Thread Frank Hossfeld
@Kirill: Do you have an example how the splitting will work?

Am Sonntag, 9. April 2017 10:54:50 UTC+2 schrieb Kirill Prazdnikov:
>
> Think about to split your app into several apps and interop between them 
> via jsinterop. We did that and detach 1 mb of genersted js app. 
>
> Our app is pretty big, resulting js is 3mb, we use single perm for all 
> browsers and not using gwt i18n. 
>
> But you can not use any java type to interop between apps like list or 
> map. You can only use strings, arrays, numbers and js interop interfaces
>
>

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Debug library code in eclipse

2017-04-10 Thread Rodolfo Raya
Expand "Referenced Libraries" and locate the jar in your project inside
Eclipse.

Right-click the jar and select "Properties".

In the dialog that appears, select "Java Source Attachment" and complete
the form using the "Workspace location" option.

Hope this helps,
Rodolfo


On Mon, Apr 10, 2017 at 1:28 PM Magnus  wrote:

> Hello,
>
> my application uses a java library (jar). When debugging the application,
> I would like to also step into the library code, but it's not available.
>
> Both, the application and the library are maven projects. The library is
> defined as a dependency in the application's pom.xml file. Both projects
> were imported "as existing maven projects" into eclipse.
>
> What do I have to do to see the library's code when debugging the
> application? Do I have to add the library eclipse project as a dependend
> project of the application eclipse project? Isn't this dependency already
> defined in the pom.xml?
> What's the right way to go?
>
> Thanks
> Magnus
>
> --
> 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, send an
> email to google-web-toolkit+unsubscr...@googlegroups.com.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> Visit this group at https://groups.google.com/group/google-web-toolkit.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Debug library code in eclipse

2017-04-10 Thread Magnus
Hello,

my application uses a java library (jar). When debugging the application, I 
would like to also step into the library code, but it's not available.

Both, the application and the library are maven projects. The library is 
defined as a dependency in the application's pom.xml file. Both projects 
were imported "as existing maven projects" into eclipse.

What do I have to do to see the library's code when debugging the 
application? Do I have to add the library eclipse project as a dependend 
project of the application eclipse project? Isn't this dependency already 
defined in the pom.xml?
What's the right way to go?

Thanks
Magnus

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Generator Class Name

2017-04-10 Thread Kirill Prazdnikov
GWT 3? It is real ? 

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Clicks taking over entire window

2017-04-10 Thread Ed
Hi,

GWT 2.8

I have a top menu bar and a side nav using gwt material.

They both process click to a center HTML Panel.

When I click a link inside the panel it takes over the whole screen.

I know I can use a frame to eliminate this problem.

I have tried:
- focuspanel
-wrapping html inside a div

The html I am sending contains  html, head, and body tags.

Is there anyway to force the clicks to show within the HTML that they are
clicked without removing topnav and sidebar without using
a frame?

Thanks in advance.
Ed

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Populate a CellTree From Database

2017-04-10 Thread Chiheb Nabil
Hi Guys , 

I want to populate a celltree from database without hard coding 
sublevel/subtree  my model looks have 3 fields

private int id;
private String designation;
private Integer parentId;


Thanks

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Digest for google-web-tool...@googlegroups.com - 7 updates in 1 topic

2017-04-10 Thread Jens


> Do you plan to open source your Typescript to Java generator ? 
>

elemental2 is generated from closure extern files and not typescript 
definitions. However the generator should also support typescript 
definitions by the time it is open sourced, at least it has been said in 
this group.

-- J.

-- 
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 google-web-toolkit-contributors+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/39f74eab-1fcb-43f4-bc03-08955fa21fff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [gwt-contrib] Digest for google-web-toolkit-contributors@googlegroups.com - 7 updates in 1 topic

2017-04-10 Thread Arnaud TOURNIER
Do you plan to open source your Typescript to Java generator ? Do you have
a time frame for that ?

I am interrested in that because I made one myself which I would not
continue if you open source your own. I can already see that we have some
decisions in common (like some similarities handling union types).
The typescript 2 jsinterop tool I made is not ready yet, but capable of
translating the Angular 2 api into JsInterop, and should also be usable to
integrate other js librairies (when they have a correct TS def file on
definitely typed).
Thanks
Arnaud

Le jeu. 6 avr. 2017 à 19:44, Arnaud TOURNIER  a écrit :

> Perfect time ! Thanks for the hard work!
> Arnaud
>
> Le jeu. 6 avr. 2017 à 12:49, <
> google-web-toolkit-contributors@googlegroups.com> a écrit :
>
> google-web-toolkit-contributors@googlegroups.com
> 
>  Google
> Groups
> 
> 
> Topic digest
> View all topics
> 
>
>- Elemental2 and JsInterop base beta releases available.
><#m_-7542689718166602472_m_4534532710411252150_group_thread_0> - 7
>Updates
>
> Elemental2 and JsInterop base beta releases available.
> 
> Julien Dramaix : Apr 05 09:42PM
>
> The beta version of Elemental2 using the JsInterop specification has been
> released on Sonatype today and is available on Maven central.
>
>
> This release introduces the concept of union types (which are heavily used
> in JavaScript) and many more improvements. More information about union
> types can be found in this document
> <
> https://docs.google.com/document/d/14mQeAGQ9M_5uTTUbzRQzCYETA887dTO-xFLtQhgUXXk/edit?usp=sharing
> >
> .
>
>
> We also split Elemental into smaller jar files:
>
>
> Jar file
>
> artifact-id
>
> GWT module
>
> elemental2-core.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-core/1.0.0-beta-1/elemental2-core-1.0.0-beta-1.jar
> >
>
> elemental2-core
>
> elemental2.core.Core
>
> elemental2-promise.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-promise/1.0.0-beta-1/elemental2-promise-1.0.0-beta-1.jar
> >
>
> elemental2-promise
>
> elemental2.promise.Promise
>
> elemental2-dom.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-dom/1.0.0-beta-1/elemental2-dom-1.0.0-beta-1.jar
> >
>
> elemental2-dom
>
> elemental2.dom.Dom
>
> elemental2-svg.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-svg/1.0.0-beta-1/elemental2-svg-1.0.0-beta-1.jar
> >
>
> elemental2-svg
>
> elemental2.svg.Svg
>
> elemental2-webgl.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-webgl/1.0.0-beta-1/elemental2-webgl-1.0.0-beta-1.jar
> >
>
> elemental2-webgl
>
> elemental2.webgl.WebGl
>
> elemental2-media.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-media/1.0.0-beta-1/elemental2-media-1.0.0-beta-1.jar
> >
>
> elemental2-media
>
> elemental2.media.Media
>
> elemental2-indexeddb.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-indexeddb/1.0.0-beta-1/elemental2-indexeddb-1.0.0-beta-1.jar
> >
>
> elemental2-indexeddb
>
> elemental2.indexeddb.IndexedDb
>
> elemental2-webstorage.jar
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/elemental2/elemental2-webstorage/1.0.0-beta-1/elemental2-webstorage-1.0.0-beta-1.jar
> >
>
> elemental2-webstorage
>
> elemental2.webstorage.WebStorage
>
>
>
> You can try them by downloading the jar files or adding Maven dependencies:
>
>
> 
>
> com.google.elemental2
>
> ${artifact-id}
>
> 1.0.0-beta-1
>
> 
>
>
> Then inherit the right gwt module in your gwt.xml file.
>
>
> This beta version works only with the latest HEAD_SNAPSHOT release of GWT
> <
> https://oss.sonatype.org/content/repositories/google-snapshots/com/google/gwt/gwt/HEAD-SNAPSHOT/
> >
> .
>
>
> We’ve also released a beta version of JsInterop.base. This library contains
> base classes and utilities that provide access to JavaScript language
> constructs that are not available in pure Java.
>
>
> You can try it by downloading the jar file
> <
> https://oss.sonatype.org/content/repositories/releases/com/google/jsinterop/base/1.0.0-beta-1/base-1.0.0-beta-1.jar
> >
> or use the following Maven dependency:
>
>
> 
>
> com.google.jsinterop
>
> base
>
> 1.0.0-beta-1
>
> 
>
>
> Don’t hesitate to report any bugs, issues, concerns you have on 

Re: Generator Class Name

2017-04-10 Thread Jens
Oh and be aware that GWT generators won't work anymore in GWT 3. So you 
better use annotation processors for new code.

-- J.

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: Generator Class Name

2017-04-10 Thread Jens
Generators are executing at compile time, so no. Usually you would use an 
abstract class or an interface as parameter to GWT.create() so the name of 
the generated class should be irrelevant, it is an implementation detail.

The only way to configure generators is using annotations, GWT properties 
or system properties.

-- J.

-- 
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, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.