Example usage for com.google.gwt.json.client JSONArray subclass-usage

List of usage examples for com.google.gwt.json.client JSONArray subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.json.client JSONArray subclass-usage.

Usage

From source file com.horaz.client.widgets.charting.Point.java

public class Point extends JSONArray {
    private static final long serialVersionUID = 7259876416370992539L;

    public Point(double x, double y) {
        set(0, new JSONNumber(x));
        set(1, new JSONNumber(y));