Java SecurityManager .checkAwtEventQueueAccess ()
Syntax
SecurityManager.checkAwtEventQueueAccess() has the following syntax.
public void checkAwtEventQueueAccess()
Example
In the following code shows how to use SecurityManager.checkAwtEventQueueAccess() method.
public class Main {
/*from ww w . j a v a2 s. co m*/
public static void main(String[] args) {
System.setProperty("java.security.policy", "file:/C:/java.policy");
SecurityManager sm = new SecurityManager();
System.setSecurityManager(sm);
// perform the check
sm.checkAwtEventQueueAccess();
System.out.println("Allowed!");
}
}