List of usage examples for com.vaadin.client ValueMap getInt
public native int getInt(final String name) ;
From source file:com.haulmont.cuba.web.toolkit.ui.client.profiler.ScreenClientProfiler.java
License:Apache License
public static int getServerTimeFromJson(ValueMap json) { if (json.containsKey("profilerServerTime")) { return json.getInt("profilerServerTime"); } else {// w w w .j av a 2 s . co m return 0; } }