Example usage for com.google.gwt.event.logical.shared CloseHandler interface-usage

List of usage examples for com.google.gwt.event.logical.shared CloseHandler interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.logical.shared CloseHandler interface-usage.

Usage

From source file org.xwiki.gwt.wysiwyg.client.plugin.color.ColorPlugin.java

/**
 * Plug-in for controlling the text color and the background color. It installs two push buttons on the tool bar, each
 * opening a color picker dialog, which is synchronized with the text area.
 * 
 * @version $Id: a1d57ed211f06bd0b608e8b7e4807bb138d9bc40 $
 */

From source file org.xwiki.gwt.wysiwyg.client.plugin.symbol.RTSymbolPlugin.java

/**
 * Could not inherit the standard SymbolPlugin because of a circular dependence!
 * Allows the user to insert a special symbol chosen with a symbol picker in place of the current selection.
 *
 */
public class RTSymbolPlugin extends BaseRealTimePlugin implements ClickHandler, CloseHandler<CompositeDialogBox> {

From source file org.xwiki.gwt.wysiwyg.client.plugin.symbol.SymbolPlugin.java

/**
 * Allows the user to insert a special symbol chosen with a symbol picker in place of the current selection.
 * 
 * @version $Id: 8786dca3677153849252a2846530d6783ffa9ca2 $
 */
public class SymbolPlugin extends AbstractPlugin implements ClickHandler, CloseHandler<CompositeDialogBox> {

From source file tv.dyndns.kishibe.qmaclone.client.game.SceneGame.java

public class SceneGame extends SceneBase implements ClosingHandler, CloseHandler<Window> {

    private static class GameStatusUpdater extends StatusUpdater<PacketGameStatus> {
        private final SceneGame scene;
        private final SessionData sessionData;

From source file tv.dyndns.kishibe.qmaclone.client.UserData.java

public class UserData implements CloseHandler<Window> {
    private static final Logger logger = Logger.getLogger(UserData.class.getName());
    private static final UserData INSTANCE = new UserData();
    private final RepeatingCommand commandLoadFromServer = new RepeatingCommand() {
        @Override
        public boolean execute() {

From source file us.asciiroth.client.ui.DialogManager.java

public class DialogManager implements CloseHandler<PopupPanel> {

    public static final ClickHandler CLOSE_DIALOG_HANDLER = new ClickHandler() {
        public void onClick(ClickEvent event) {
            DialogManager.get().pop();
        }