Dialog

object Dialog

Simple predefined dialogs.

Simple predefined dialogs.

See also

javax.swing.JOptionPane

Companion
class
class Object
trait Matchable
class Any

Type members

Classlikes

object Message extends Enumeration

The message type of a dialog.

The message type of a dialog.

object Options extends Enumeration

The possible answers a user can select.

The possible answers a user can select.

object Result extends Enumeration

The selected result of dialog.

The selected result of dialog.

Value members

Concrete methods

def showConfirmation(parent: PeerContainer, message: Any, title: String, optionType: Value, messageType: Value, icon: Icon): Value
def showInput[A](parent: PeerContainer, message: Any, title: String, messageType: Value, icon: Icon, entries: Seq[A], initial: A): Option[A]
def showMessage(parent: PeerContainer, message: Any, title: String, messageType: Value, icon: Icon): Unit
def showOptions(parent: PeerContainer, message: Any, title: String, optionType: Value, messageType: Value, icon: Icon, entries: Seq[Any], initial: Int): Value