All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.highcharts4gwt.model.array.api.Array Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
package com.github.highcharts4gwt.model.array.api;

public interface Array
{
    T getItem(int index);

    int length();

    void addToEnd(T 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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy