Example usage for com.google.gwt.tok.client TokBox getInstance

List of usage examples for com.google.gwt.tok.client TokBox getInstance

Introduction

In this page you can find the example usage for com.google.gwt.tok.client TokBox getInstance.

Prototype

public static TokBox getInstance() 

Source Link

Usage

From source file:com.google.gwt.tok.test.client.model.TokModel.java

public TokModel() {
    if (TokBox.supportRequirements()) {
        // Init Tok
        tokBox = TokBox.getInstance();
    } else {/*from   ww  w  . j av  a  2  s.c  om*/
        Window.alert("You don't have the minimum requirements to run this application.\n"
                + "Please upgrade to the latest version of Flash.");
    }
    bind();
}