List of usage examples for com.google.gwt.user.client HistoryImpl HistoryImpl
public HistoryImpl()
From source file:cc.alcina.framework.extras.history.client.HistoryImplDelegate.java
License:Apache License
private void ensureImpl() { if (impl == null) { if (isHtml5()) { impl = new HistoryImplPushState(); } else {/*w w w . j a v a 2 s.c o m*/ impl = new HistoryImpl(); } } }