Example usage for com.google.gwt.core.client JavaScriptObject subclass-usage

List of usage examples for com.google.gwt.core.client JavaScriptObject subclass-usage

Introduction

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

Usage

From source file com.google.collide.clientlibs.vertx.VertxBusImpl.java

/**
 * A GWT overlay object for the Vertx Event Bus.
 */
public class VertxBusImpl extends JavaScriptObject implements VertxBus {

    public static final native VertxBus create() /*-{

From source file com.google.collide.codemirror2.CmParser.java

/**
 * One of the CodeMirror2 parsing modes, with utilities for saving/restoring the
 * parser state and returning a list of tokens for a string of text.
 *
 */
public class CmParser extends JavaScriptObject implements Parser {

From source file com.google.collide.codemirror2.CmState.java

/**
 * A wrapper around the JSO state mutated by a parser mode. This is usually a
 * dictionary of mode-specific state information, such as a stack of HTML tags
 * to close or the next expected character.
 */
public class CmState extends JavaScriptObject implements State {

From source file com.google.collide.codemirror2.CmStream.java

/**
 * Native CodeMirror {@link Stream} wrapper.
 */
public class CmStream extends JavaScriptObject implements Stream {

    protected CmStream() {

From source file com.google.collide.codemirror2.JsLocalVariable.java

/**
 * Element of linked list of local variables in {@link JsState}.
 */
public class JsLocalVariable extends JavaScriptObject {

    protected JsLocalVariable() {

From source file com.google.collide.codemirror2.XmlContext.java

/**
 * Object that represents xml-state context.
 *
 */
public class XmlContext extends JavaScriptObject {

From source file com.google.collide.json.client.Jso.java

/**
 * Utility class for JavaScriptObject construction and serialization. We try to
 * keep all the nasty typesystem cludge with working with JavaScriptObject maps
 * confined in this class. We rely on identical method body coalescing to keep
 * the code small.
 *

From source file com.google.collide.json.client.JsoArray.java

/**
 * Similar to {@link com.google.gwt.core.client.JsArray}, except
 * {@link com.google.gwt.core.client.JsArray} only allows you to store <T
 * extends JavaScriptObject>.
 *
 * This class is a native JS array that lets you store any Object.

From source file com.google.collide.json.client.JsoStringMap.java

/**
 * This is used to satisfy DTO casting requirements.
 *
 *  On the client, if you have a reference to JsonStringMap, or JsoStringMap
 * (the JavaScriptObject backed impl), feel free to cross cast this to the more
 * robust {@link com.google.collide.json.client.Jso}.

From source file com.google.gerrit.client.access.ProjectAccessInfo.java

public class ProjectAccessInfo extends JavaScriptObject {
    public final native boolean canAddRefs() /*-{ return this.can_add ? true : false; }-*/;

    public final native boolean isOwner() /*-{ return this.is_owner ? true : false; }-*/;

    public final native boolean configVisible() /*-{ return this.config_visible ? true : false; }-*/;