GWT 2.4.0

Uses of Class
com.google.gwt.core.client.JsDate

Packages that use JsDate
com.google.gwt.core.client Fundamental classes used in client-side GWT code. 
 

Uses of JsDate in com.google.gwt.core.client
 

Methods in com.google.gwt.core.client that return JsDate
static JsDate JsDate.create()
          Creates a new date with the current time.
static JsDate JsDate.create(double milliseconds)
          Creates a new date with the specified internal representation, which is the number of milliseconds since midnight on January 1st, 1970.
static JsDate JsDate.create(int year, int month)
          Creates a new date using the specified values.
static JsDate JsDate.create(int year, int month, int dayOfMonth)
          Creates a new date using the specified values.
static JsDate JsDate.create(int year, int month, int dayOfMonth, int hours)
          Creates a new date using the specified values.
static JsDate JsDate.create(int year, int month, int dayOfMonth, int hours, int minutes)
          Creates a new date using the specified values.
static JsDate JsDate.create(int year, int month, int dayOfMonth, int hours, int minutes, int seconds)
          Creates a new date using the specified values.
static JsDate JsDate.create(int year, int month, int dayOfMonth, int hours, int minutes, int seconds, int millis)
          Creates a new date using the specified values.
static JsDate JsDate.create(java.lang.String dateString)
          Creates a new date from a string to be parsed.
 


GWT 2.4.0