Fundamental classes used in client-side GWT code.
-
Creates a new date with the current time.
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.
JsDate.create(int year,
int month)
Creates a new date using the specified values.
JsDate.create(int year,
int month,
int dayOfMonth)
Creates a new date using the specified values.
JsDate.create(int year,
int month,
int dayOfMonth,
int hours)
Creates a new date using the specified values.
JsDate.create(int year,
int month,
int dayOfMonth,
int hours,
int minutes)
Creates a new date using the specified values.
JsDate.create(int year,
int month,
int dayOfMonth,
int hours,
int minutes,
int seconds)
Creates a new date using the specified values.
JsDate.create(int year,
int month,
int dayOfMonth,
int hours,
int minutes,
int seconds,
int millis)
Creates a new date using the specified values.
Creates a new date from a string to be parsed.