Sha256: 8f7000849b5d4f88bc0e92a8b07023ba34b4c5485d404a4c8baa303aa528971d

Contents?: true

Size: 647 Bytes

Versions: 1

Compression:

Stored size: 647 Bytes

Contents

/**
 * Sencha GXT 3.1.1 - Sencha for GWT
 * Copyright(c) 2007-2014, Sencha, Inc.
 * licensing@sencha.com
 *
 * http://www.sencha.com/products/gxt/license/
 */
package com.dldinternet.aws.cfn.stacker.desktopapp.client.utility;

public abstract class Prompt {

  public static Prompt get() {
    return PromptImpl.INSTANCE;
  }

  public abstract void alert(String title, String text);

  public abstract void alert(String title, String text, Runnable runnable);

  public abstract void confirm(String title, String text, Runnable yesRunnable);

  public abstract void confirm(String title, String text, Runnable yesRunnable, Runnable noRunnable);
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aws-cfn-stacker-0.0.6 ui/src/com/dldinternet/aws/cfn/stacker/desktopapp/client/utility/Prompt.java