Example usage for com.google.gwt.core.client JsDate create

List of usage examples for com.google.gwt.core.client JsDate create

Introduction

In this page you can find the example usage for com.google.gwt.core.client JsDate create.

Prototype

public static native JsDate create(String dateString) ;

Source Link

Document

Creates a new date from a string to be parsed.

Usage

From source file:org.thechiselgroup.choosel.protovis.client.PVScale.java

License:Apache License

/**
 * Scales are functions. Use this method if the scale returns a double
 * value./*from   w w  w.  j ava  2 s.c om*/
 */
public final double fd(Date value) {
    return this.fd(JsDate.create(value.getTime()));
}