List of usage examples for com.google.gwt.core.client JsDate UTC
public static native double UTC(int year, int month, int dayOfMonth, int hours, int minutes, int seconds, int millis) ;
From source file:java.util.Date.java
License:Apache License
public static long UTC(int year, int month, int date, int hrs, int min, int sec) { return (long) JsDate.UTC(year + 1900, month, date, hrs, min, sec, 0); }