java命名空间java.awt枚举dialog.modalitytype的类成员方法:
toolkit_modal定义及介绍
本文导语:
toolkit_modal
public static final dialog.modalitytype toolkit_modal
toolkit_modal 对话框阻塞从同一工具包运行所有顶层窗口(它自己的子层次结构中的顶层窗口除外)。如果浏览器中有几个已启动的 applet,则它们都将使用同一工具包运行;因...
public static final dialog.modalitytype toolkit_modal
toolkit_modal
对话框阻塞从同一工具包运行所有顶层窗口(它自己的子层次结构中的顶层窗口除外)。如果浏览器中有几个已启动的 applet,则它们都将使用同一工具包运行;因此,通过 applet 显示的工具包模式对话框可能影响其他 applet,以及嵌入了此工具包 java 运行时环境的浏览器实例的所有窗口。要使用工具包模式对话框,则必须授予特殊的 awtpermission
"toolkitmodality"。如果正在创建 toolkit_modal
对话框且没有授予此权限,则将抛出 securityexception
,且不创建任何对话框。如果将模式类型更改为 toolkit_modal
且不授予此权限,则将抛出 securityexception
,模式类型保持不变。
public static final 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);
- 返回:
- an array containing the constants of this enum type, in
the order they are declared