Example usage for com.google.gwt.user.client HistoryImpl HistoryImpl

List of usage examples for com.google.gwt.user.client HistoryImpl HistoryImpl

Introduction

In this page you can find the example usage for com.google.gwt.user.client HistoryImpl HistoryImpl.

Prototype

public HistoryImpl() 

Source Link

Usage

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