List of usage examples for com.google.gwt.core.client JsDate create
public static native JsDate create(String dateString) ;
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())); }