net.sourceforge.jiu.gui.awt.dialogs
Class Dialogs
java.lang.Object
net.sourceforge.jiu.gui.awt.dialogs.Dialogs
public class Dialogs
extends java.lang.Object
Convenience class that provides a number of static helper methods to deal with dialogs.
static void | center(Window window) - Centers the argument window on screen.
|
static Integer | getInteger(Frame owner, String title, String message, int minValue, int initialValue, int maxValue, String okText, String cancelText) - Creates a new IntegerDialog, displays it and returns the Integer
value specified by the user (or null if the dialog was canceled).
|
center
public static void center(Window window)
Centers the argument window on screen.
getInteger
public static Integer getInteger(Frame owner,
String title,
String message,
int minValue,
int initialValue,
int maxValue,
String okText,
String cancelText)
Creates a new IntegerDialog, displays it and returns the Integer
value specified by the user (or null if the dialog was canceled).
owner
- frame from which the dialog is spawnedtitle
- text for the title bar of the dialogmessage
- message displayed in the dialogminValue
- minimal allowed integer value to be entered by the userinitialValue
- initial integer value shown in the dialogmaxValue
- maximal allowed integer value to be entered by the userokText
- the text for the OK buttoncancelText
- the text for the cancel button
- the specified integer value or null if the Cancel button was pressed