Example usage for com.google.gwt.event.dom.client CanPlayThroughHandler onCanPlayThrough

List of usage examples for com.google.gwt.event.dom.client CanPlayThroughHandler onCanPlayThrough

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client CanPlayThroughHandler onCanPlayThrough.

Prototype

void onCanPlayThrough(CanPlayThroughEvent event);

Source Link

Document

Called when CanPlayThroughEvent is fired.

Usage

From source file:com.google.code.gwt.html5.media.client.event.CanPlayThroughEvent.java

License:Apache License

@Override
protected void dispatch(CanPlayThroughHandler handler) {
    handler.onCanPlayThrough(this);
}