Uses of Class
org.pepstock.charba.client.commons.Array
-
Packages that use Array Package Description org.pepstock.charba.client.callbacks All callbacks interfaces to be implemented, also to use the scriptable options of CHART.JS.org.pepstock.charba.client.commons Core classes to manage the inter-operations with java script code.org.pepstock.charba.client.utils Contains some utilities to use in Charba, like HTML annotation builder, and other java script utilities useful for debugging. -
-
Uses of Array in org.pepstock.charba.client.callbacks
Methods in org.pepstock.charba.client.callbacks that return Array Modifier and Type Method Description Array
ScriptableFunctions.ProxyArrayCallback. call(NativeObject context)
Method of function to be called to provide an array property. -
Uses of Array in org.pepstock.charba.client.commons
Classes in org.pepstock.charba.client.commons with type parameters of type Array Modifier and Type Class Description class
NativeArrayContainer<T extends Array>
Base class for all classes which are wrapping a native java script array.interface
NativeArrayContainerFactory<A extends Array,T extends NativeArrayContainer<A>>
Interface to be implemented to load elements from an array of native array.Subclasses of Array in org.pepstock.charba.client.commons Modifier and Type Class Description class
ArrayCanvas
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of object (HTMLCanvasElement) values.class
ArrayChart
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of chart values.class
ArrayDouble
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of numeric (doubles) values.class
ArrayDoubleArray
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of arrays of numeric (doubles) values.class
ArrayGradient
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of object (CanvasGradientItem) values.class
ArrayImage
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of object (ImageElement) values.class
ArrayInteger
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of numeric (int) values.class
ArrayMixedObject
Array object which maps the java script object.
A simple wrapper around a homogeneous array of mixed type of object (extension of java script objects) values.class
ArrayObject
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of object (extension of java script objects) values.class
ArrayPattern
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of object (CanvasPatternItem) values.class
ArrayString
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of string values.class
ArrayTouch
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of object (Touch) values.Methods in org.pepstock.charba.client.commons with type parameters of type Array Modifier and Type Method Description protected <T extends Array>
TNativeObjectContainer. getArrayValue(Key key)
Returns a value (array) in the embedded JavaScript object at specific property.protected <T extends Array>
voidNativeObjectContainer. setArrayValue(Key key, T value)
Sets a value (Array) in the embedded JavaScript object at specific property.protected <T extends Array>
voidAbstractNode. setArrayValueAndAddToParent(Key key, T value)
Sets a value (Array) in the embedded JavaScript object at specific property.protected <T extends Array>
voidPropertyHandler. setArrayValueAndAddToParent(Key key, T value)
Sets a value (Array) in the embedded JavaScript object at specific property. -
Uses of Array in org.pepstock.charba.client.utils
Subclasses of Array in org.pepstock.charba.client.utils Modifier and Type Class Description class
RegExpResult
Array object which maps the java script object.
A simple wrapper around a homogeneous native array of string values.Methods in org.pepstock.charba.client.utils with type parameters of type Array Modifier and Type Method Description static <T extends Array>
TJSON. parseForArray(String text)
Parses a JSON string, constructing the JavaScript array described by the string.
-