java命名空间java.awt枚举dialog.modalexclusiontype的类成员方法:
toolkit_exclude定义及介绍
本文导语:
toolkit_exclude
public static final dialog.modalexclusiontype toolkit_exclude
toolkit_exclude 指示顶层窗口不会被应用程序模式对话框或工具包模式对话框阻塞。此外,它不会被其子层次结构范围之外的文档模式对话框阻塞。必须为这种排斥授予 "...
public static final dialog.modalexclusiontype toolkit_exclude
toolkit_exclude
指示顶层窗口不会被应用程序模式对话框或工具包模式对话框阻塞。此外,它不会被其子层次结构范围之外的文档模式对话框阻塞。必须为这种排斥授予 "toolkitmodality" awtpermission
。如果将排斥属性更改为 toolkit_exclude
且不授予此权限,则将抛出 securityecxeption
,排斥属性将保持不变。
public static final dialog.modalexclusiontype[] 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.modalexclusiontype c : dialog.modalexclusiontype.values())
system.out.println(c);
- 返回:
- an array containing the constants of this enum type, in
the order they are declared