com.github.highcharts4gwt.model.array.api.ArrayString 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.
The newest version!
package com.github.highcharts4gwt.model.array.api;
public interface ArrayString
{
String get(int index);
int length();
void push(String value);
/**
* Replacement for native set method
*
* @param index
* @param value
*/
void setValue(int index, String value);
void setLength(int newLength);
}