Example usage for com.google.gwt.user.client.ui DialogBox subclass-usage

List of usage examples for com.google.gwt.user.client.ui DialogBox subclass-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui DialogBox subclass-usage.

Usage

From source file org.clevermore.monitor.client.servers.ThreadDumpPopup.java

public class ThreadDumpPopup extends DialogBox {

    final TextArea textArea = new TextArea();
    final FlowPanel fp = new FlowPanel();
    final FlexTable ft = new FlexTable();

From source file org.clevermore.monitor.client.settings.SettingsPopup.java

public class SettingsPopup extends DialogBox {

    private FlowPanel fp = new FlowPanel();
    private TextArea ta = new TextArea();

    public SettingsPopup(final GeneralServiceAsync service) {

From source file org.cloudcoder.app.client.view.ChoiceDialogBox.java

/**
 * Dialog box asking the user to choose between choices.
 * 
 * @param <ChoiceType> the data type of the choice values to be selected
 * @author David Hovemeyer
 */

From source file org.cloudcoder.app.client.view.DeleteCourseDialog.java

/**
 * @author jankvr
 *
 */
public class DeleteCourseDialog extends DialogBox {
    private DeleteCourseView view;

From source file org.cloudcoder.app.client.view.DeleteUserDialog.java

/**
 * Dialog for deleting an existing user.
 * 
 * @author Jan Kovar
 *
 */

From source file org.cloudcoder.app.client.view.EditModuleDialogBox.java

/**
 * @author jaimespacco
 *
 */
public class EditModuleDialogBox extends DialogBox {
    private Set<ProblemAndModule> problems;

From source file org.cloudcoder.app.client.view.EditUserDialog.java

/**
 * Dialog for editing an existing user.
 * 
 * @author Andrei Papancea
 * @author David Hovemeyer
 */

From source file org.cloudcoder.app.client.view.ImportCourseDialogBox.java

/**
 * Dialog box for importing all problems from another course.
 * Invokes a callback when the user selects a course.
 * 
 * @author David Hovemeyer
 */

From source file org.cloudcoder.app.client.view.ImportProblemDialog.java

/**
 * Dialog for importing a problem from the exercise repository.
 * 
 * @author David Hovemeyer
 */
public class ImportProblemDialog extends DialogBox {

From source file org.cloudcoder.app.client.view.NewUserDialog.java

/**
 * Dialog for creating a new {@link User} account in the context
 * of a {@link Course}.
 * 
 * @author Andrei Papancea
 * @author David Hovemeyer