Example usage for com.google.gwt.ajaxloader.client Properties getDate

List of usage examples for com.google.gwt.ajaxloader.client Properties getDate

Introduction

In this page you can find the example usage for com.google.gwt.ajaxloader.client Properties getDate.

Prototype

public final Date getDate(String key) throws JavaScriptException, TypeException 

Source Link

Document

Get a Date object mapped to the specified key.

Usage

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));
}