meyfa/structogram2byob

View on GitHub
src/main/java/structogram2byob/gui/dialogs/IDialog.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package structogram2byob.gui.dialogs;

/**
 * Represents a modal dialog that requests a value from the user.
 *
 * @param <T> The type of value.
 */
public interface IDialog<T>
{
    /**
     * Opens this dialog and obtains a result value from the user.
     *
     * @return The result value.
     */
    T show();
}