com.github.highcharts4gwt.model.array.api.Array Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
GWT wrapper for highcharts library.
package com.github.highcharts4gwt.model.array.api;
public interface Array
{
T getItem(int index);
int length();
void addToEnd(T2 value); // Cannot use JsArray method name otherwise error
// overload using erasure
/**
* Replacement for native set method
*
* @param index
* @param value
*/
void setValue(int index, T value);
void setLength(int newLength);
}