List of usage examples for com.google.gwt.core.client JavaScriptObject subclass-usage
From source file com.google.code.gwt.geolocation.client.Coordinates.java
/**
* Represents a position Coordinates object.
*
* @author bguijt
* @see <a href="http://www.w3.org/TR/geolocation-API/#coordinates">W3C
* Geolocation API - Coordinates interface</a>
From source file com.google.code.gwt.geolocation.client.Geolocation.java
/**
* Represents a HTML5 Geolocation object.
*
* @see <a href="http://www.w3.org/TR/geolocation-API/">W3C Geolocation</a>
* @see <a
* href="http://code.google.com/p/gwt-mobile-webkit/wiki/GeolocationApi">Wiki
From source file com.google.code.gwt.geolocation.client.impl.GearsFactory.java
/**
* Represents the Google Gears Factory class.
*
* <p>
* The primary purpose is to create a {@link Geolocation} object.
* </p>
From source file com.google.code.gwt.geolocation.client.Position.java
/**
* Represents a Geo position.
*
* @author bguijt
* @see <a href="http://www.w3.org/TR/geolocation-API/#position">W3C Geolocation
* API - Position interface</a>
From source file com.google.code.gwt.geolocation.client.PositionError.java
/**
* Represents an error encountered when asking the (current) {@link Position}.
*
* @author bguijt
* @see <a href="http://www.w3.org/TR/geolocation-API/#position-error">W3C
* Geolocation API - PositionError interface</a>
From source file com.google.code.gwt.geolocation.client.PositionOptions.java
/**
* Represents options to configure the {@link Geolocation} operations.
*
* <p>
* Use {@link #create()} or {@link #getPositionOptions(boolean, int, int)} to
* create an instance.
From source file com.google.code.gwt.html5.media.client.MediaError.java
public final class MediaError extends JavaScriptObject { public static final int MEDIA_ERR_ABORTED = 1; public static final int MEDIA_ERR_NETWORK = 2; public static final int MEDIA_ERR_DECODE = 3; public static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4;
From source file com.google.code.gwt.html5.media.client.TimeRanges.java
public final class TimeRanges extends JavaScriptObject { protected TimeRanges() { } public native int length() /*-{ return this.length;
From source file com.google.code.gwt.storage.client.StorageEvent.java
/**
* Represent a Storage Event.
*
* <p>
* A Storage Event is fired when a storage area changes, as described in these
* two sections (for <a
From source file com.google.collide.client.util.JsIntegerMap.java
/** * Creates a lightweight map with integer keys based on a JavaScript object. * * @param <T> the type contained as value in the map */ public class JsIntegerMap<T> extends JavaScriptObject implements JsonIntegerMap<T> {