This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.awt
enum Dialog.ModalExclusionType

java.lang.Object extended by java.lang.Enum extended by java.awt.Dialog.ModalExclusionType
All Implemented Interfaces:
Serializable, Comparable

public static final enum Dialog.ModalExclusionType
extends Enum

Any top-level window can be marked not to be blocked by modal dialogs. This is called "modal exclusion". This enum specifies the possible modal exclusion types.


Field Summary
static Dialog.ModalExclusionType APPLICATION_EXCLUDE
          APPLICATION_EXCLUDE indicates that a top-level window won't be blocked by any application-modal dialogs.
static Dialog.ModalExclusionType NO_EXCLUDE
          No modal exclusion.
static Dialog.ModalExclusionType TOOLKIT_EXCLUDE
          TOOLKIT_EXCLUDE indicates that a top-level window won't be blocked by application-modal or toolkit-modal dialogs.
 
Method Summary
static Dialog.ModalExclusionType

          
static Dialog.ModalExclusionType[]

          
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

APPLICATION_EXCLUDE

public static final Dialog.ModalExclusionType APPLICATION_EXCLUDE
APPLICATION_EXCLUDE indicates that a top-level window won't be blocked by any application-modal dialogs. Also, it isn't blocked by document-modal dialogs from outside of its child hierarchy.

NO_EXCLUDE

public static final Dialog.ModalExclusionType NO_EXCLUDE
No modal exclusion.

TOOLKIT_EXCLUDE

public static final Dialog.ModalExclusionType TOOLKIT_EXCLUDE
TOOLKIT_EXCLUDE indicates that a top-level window won't be blocked by application-modal or toolkit-modal dialogs. Also, it isn't blocked by document-modal dialogs from outside of its child hierarchy. The "toolkitModality" AWTPermission must be granted for this exclusion. If an exclusion property is being changed to TOOLKIT_EXCLUDE and this permission is not granted, a SecurityEcxeption will be thrown, and the exclusion property will be left unchanged.
Method Detail

valueOf

public static Dialog.ModalExclusionType valueOf(String name)
Parameters:
name

values

public static Dialog.ModalExclusionType[] values()


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.