Example usage for com.google.gwt.user.client Command interface-usage

List of usage examples for com.google.gwt.user.client Command interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client Command interface-usage.

Usage

From source file asquare.gwt.sb.client.util.Action.java

public interface Action extends Command {
    String getUIString();

    boolean isEnabled();

    void setEnabled(boolean enabled);

From source file asquare.gwt.sb.client.util.CloneableCommand.java

public interface CloneableCommand extends Command {
    CloneableCommand cloneCommand();
}

From source file asquare.gwt.sb.client.util.CommandStub.java

public class CommandStub implements Command {
    private final String m_id;

    public boolean m_executed = false;

    public CommandStub(String id) {

From source file asquare.gwt.sb.client.util.UICommand.java

public interface UICommand extends Command, HasUiString {
}

From source file asquare.gwt.sb.client.util.UpdatesViewCommand.java

public interface UpdatesViewCommand extends Command {
}

From source file asquare.gwt.tk.client.ui.commands.FocusCommand.java

/**
 * Focuses or blurs a widget. 
 * 
 * @see com.google.gwt.user.client.DeferredCommand#addCommand(Command)
 */
public class FocusCommand implements Command {

From source file asquare.gwt.tk.client.ui.commands.SelectAllCommand.java

/**
 * Selects all the text in a widget. 
 * 
 * @see com.google.gwt.user.client.DeferredCommand#addCommand(Command)
 */
public class SelectAllCommand implements Command {

From source file asquare.gwt.tk.uitest.popuppanel.client.junk.UpdateToolTipCommand.java

public class UpdateToolTipCommand implements Command {
    private final ToolTipModel m_toolTipModel;
    private final HoverModel m_hoverModel;
    private final Widget m_currentWidget;

    public UpdateToolTipCommand(ToolTipModel toolTipModel, HoverModel hoverModel) {

From source file ch.gbrain.gwtstorage.manager.StorageInfoCollector.java

/**
 * This Command class is used to schedule the collecting of the file information for one given resource stored in the cache and
 * referenced by the corresponding storageKey.
 * @author Markus
 * 
 *

From source file ch.gbrain.gwtstorage.manager.StorageResourceCollector.java

public class StorageResourceCollector implements Command {
    private Logger logger;
    private StorageManager storageManager;
    private PhoneGap phonegap;
    private StorageResource storageResource;