Example usage for com.google.gwt.dom.client MediaElement subclass-usage

List of usage examples for com.google.gwt.dom.client MediaElement subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.dom.client MediaElement subclass-usage.

Usage

From source file com.google.code.gwt.html5.media.client.AudioElement.java

@TagName(AudioElement.TAG)
public final class AudioElement extends MediaElement {
    static final String TAG = "audio";

    protected AudioElement() {
    }

From source file com.google.code.gwt.html5.media.client.VideoElement.java

@TagName(VideoElement.TAG)
public final class VideoElement extends MediaElement {
    static final String TAG = "video";

    public static VideoElement create() {
        return Document.get().createElement(TAG).cast();

From source file gwt.g2d.client.media.AudioElement.java

/**
 * Represents a sound or audio stream.
 * 
 * @author hao1300@gmail.com
 */
@TagName(AudioElement.TAG)

From source file gwt.g2d.client.media.VideoElement.java

/**
 * Represents an element that is used for playing videos or movies.
 * 
 * @author hao1300@gmail.com
 */
@TagName(VideoElement.TAG)