Interface | Description |
---|---|
Key |
Represents the property key of a JavaScript object.
Used for enum. |
Class | Description |
---|---|
AbstractList<E> |
Abstract list implementation which contains a couple of methods to help.
It has been created to manage the objects inside of GWT JavaScript object (array). |
ArrayListHelper |
Utility to create array list objects based on GWT JavaScript objects.
|
ChartContainer |
Extends a JavaScript object container for all entities which needs the chart instance.
This class is used for all entities which will trigger events or callbacks to pass the chart instance as parameter of implemented interface. |
EventProvider |
Is a JavaScript object container, which contains THE chart instance, which will manage chart events to events handlers.
|
GenericJavaScriptObject |
A wrapper to a native GWT JavaScript object.
A JavaScriptObject cannot be created directly. JavaScriptObject should be declared as the return type of a JSNI method that returns native (non-Java) objects. A JavaScriptObject passed back into JSNI from Java becomes the original object, and can be accessed in JavaScript as expected. |
IteratorImpl<E> |
Custom iterator over a collection.
|
JavaScriptObjectContainer |
Contains a GWT JavaScript object.
|
JsArrayDoubleImpl |
A simple wrapper around a homogeneous native array of numeric (doubles) values.
Extends GWT implementation adding additional methods, helpful to manage the array as a list. |
JsArrayIntegerImpl |
A simple wrapper around a homogeneous native array of numeric (integers) values.
Extends GWT implementation adding additional methods, helpful to manage the array as a list. |
JsArrayObjectImpl |
A simple wrapper around a homogeneous native array of object (generic JavaScript objects) values.
Extends GWT implementation adding additional methods, helpful to manage the array as a list. |
JsArrayStringImpl |
A simple wrapper around a homogeneous native array of string values.
Extends GWT implementation adding additional methods, helpful to manage the array as a list. |
JsDoubleArrayList |
An ordered collection (also known as a sequence).
|
JsEnumValueArrayList<E extends Key> |
An ordered collection (also known as a sequence).
|
JsIntegerArrayList |
An ordered collection (also known as a sequence).
|
JsObjectArrayList<E extends GenericJavaScriptObject> |
An ordered collection (also known as a sequence).
|
JsObjectContainerArrayList<E extends JavaScriptObjectContainer> |
An ordered collection (also known as a sequence).
|
JsStringArrayList |
An ordered collection (also known as a sequence).
|
ListIteratorImpl<E> |
An iterator for lists that allows the programmer to traverse the list in either direction, modify the list during iteration, and obtain the iterator's current position in the list.
|
Merger |
Utility to merge java script object into another one.
|
StandardKey |
This is a standard implementation of a key of property inside a Java script object.
The standard is the key name is a String. |
Enum | Description |
---|---|
JavaScriptFieldType |
Enums all java script types.
The latest ECMAScript standard defines seven data types: Six data types that are primitives: Boolean Function Undefined Number String Symbol and other 2 objects types: Object Array See https://developer.mozilla.org/it/docs/Web/JavaScript/Reference/Operators/typeof |