Example usage for com.google.gwt.json.client JSONNumber JSONNumber

List of usage examples for com.google.gwt.json.client JSONNumber JSONNumber

Introduction

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

Prototype

public JSONNumber(double value) 

Source Link

Document

Creates a new JSONNumber from the double value.

Usage

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr cx(double cx) {
    this.put("cx", new JSONNumber(cx));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr cy(double cy) {
    this.put("cy", new JSONNumber(cy));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr x(double x) {
    this.put("x", new JSONNumber(x));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr y(double y) {
    this.put("y", new JSONNumber(y));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr rx(double rx) {
    this.put("rx", new JSONNumber(rx));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr ry(double ry) {
    this.put("ry", new JSONNumber(ry));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr r(double r) {
    this.put("r", new JSONNumber(r));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr rotation(double r) {
    this.put("rotation", new JSONNumber(r));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr opacity(double opacity) {
    this.put("opacity", new JSONNumber(opacity));
    return this;
}

From source file:com.hydro4ge.raphaelgwt.client.Attr.java

License:Apache License

public Attr width(double rotation) {
    this.put("rotation", new JSONNumber(rotation));
    return this;
}