- java.lang.Object
-
- java.lang.Enum<Dialog.ModalityType>
-
- java.awt.Dialog.ModalityType
-
- All Implemented Interfaces:
- Serializable, Comparable<Dialog.ModalityType>
- Enclosing class:
- Dialog
public static enum Dialog.ModalityType extends Enum<Dialog.ModalityType>
Modal dialogs block all input to some top-level windows. Whether a particular window is blocked depends on dialog's type of modality; this is called the "scope of blocking". TheModalityType
enum specifies modal types and their associated scopes.
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description APPLICATION_MODAL
AnAPPLICATION_MODAL
dialog blocks all top-level windows from the same Java application except those from its own child hierarchy.DOCUMENT_MODAL
ADOCUMENT_MODAL
dialog blocks input to all top-level windows from the same document except those from its own child hierarchy.MODELESS
MODELESS
dialog doesn't block any top-level windows.TOOLKIT_MODAL
ATOOLKIT_MODAL
dialog blocks all top-level windows run from the same toolkit except those from its own child hierarchy.
-
Method Summary
Methods Modifier and Type Method and Description static Dialog.ModalityType
valueOf(String name)
Returns the enum constant of this type with the specified name.static Dialog.ModalityType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MODELESS
public static final Dialog.ModalityType MODELESS
MODELESS
dialog doesn't block any top-level windows.
-
DOCUMENT_MODAL
public static final Dialog.ModalityType DOCUMENT_MODAL
ADOCUMENT_MODAL
dialog blocks input to all top-level windows from the same document except those from its own child hierarchy. A document is a top-level window without an owner. It may contain child windows that, together with the top-level window are treated as a single solid document. Since every top-level window must belong to some document, its root can be found as the top-nearest window without an owner.
-
APPLICATION_MODAL
public static final Dialog.ModalityType APPLICATION_MODAL
AnAPPLICATION_MODAL
dialog blocks all top-level windows from the same Java application except those from its own child hierarchy. If there are several applets launched in a browser, they can be treated either as separate applications or a single one. This behavior is implementation-dependent.
-
TOOLKIT_MODAL
public static final Dialog.ModalityType TOOLKIT_MODAL
ATOOLKIT_MODAL
dialog blocks all top-level windows run from the same toolkit except those from its own child hierarchy. If there are several applets launched in a browser, all of them run with the same toolkit; thus, a toolkit-modal dialog displayed by an applet may affect other applets and all windows of the browser instance which embeds the Java runtime environment for this toolkit. SpecialAWTPermission
"toolkitModality" must be granted to use toolkit-modal dialogs. If aTOOLKIT_MODAL
dialog is being created and this permission is not granted, aSecurityException
will be thrown, and no dialog will be created. If a modality type is being changed toTOOLKIT_MODAL
and this permission is not granted, aSecurityException
will be thrown, and the modality type will be left unchanged.
-
-
Method Detail
-
values
public static Dialog.ModalityType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Dialog.ModalityType c : Dialog.ModalityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Dialog.ModalityType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/awt/Dialog.ModalityType.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.