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.chrome.gwt.client.events.Event.java

/**
 * Chrome Extensions Event API.
 * 
 * This class provides a Java Wrapper for a Chrome Event.
 * 
 * Each subclass should provide an 'addListener()' method to register a callback

From source file com.chrome.gwt.client.PageActions.java

/**
 * PageActions API.
 * 
 * See documentation at: <a href="http://dev.chromium.org/developers/design-documents/extensions/page-actions-api"
 * >Page Actions</a>
 * 

From source file com.chrome.gwt.client.Port.java

/**
 * Extension messaging port for communication between ContentScripts and the
 * BackgroundPage.
 * 
 * See documentation at: <a href=
 * "http://dev.chromium.org/developers/design-documents/extensions/content-scripts"

From source file com.chrome.gwt.client.Tabs.java

/**
 * Wraps the chrome.tabs API.
 * 
 * See documentation at: <a href=
 * "http://dev.chromium.org/developers/design-documents/extensions/tabs-api"
 * >Tabs</a>

From source file com.chrome.gwt.client.View.java

/**
 * Handle to the Window context for a Component in a chrome extension.
 */
public class View extends JavaScriptObject {
    protected View() {
    }

From source file com.client.ClickRow.java

/** 
 * @author bguijt 
 */
public class ClickRow extends JavaScriptObject {

    protected ClickRow() {

From source file com.codenvy.ide.texteditor.api.parser.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.codenvy.ide.texteditor.api.parser.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.codenvy.ide.texteditor.api.parser.CmStream.java

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

    protected CmStream() {
    }

From source file com.codenvy.ide.xml.editor.XmlContext.java

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