List of usage examples for com.google.gwt.ajaxloader.client Properties getDate
public final Date getDate(String key) throws JavaScriptException, TypeException
From source file:com.chap.links.client.events.RangeChangeHandler.java
License:Apache License
@Override protected void onEvent(Properties properties) throws Properties.TypeException { Date start = properties.getDate("start"); Date end = properties.getDate("end"); onRangeChange(new RangeChangeEvent(start, end)); }