Interface QuitResponse

public interface QuitResponse
Used to respond to a request to quit the application.
Since:
9
See Also:

Method Summary

Modifier and Type Method Description
void cancelQuit()
Notifies the external quit requester that the user has explicitly canceled the pending quit, and leaves the application running.
void performQuit()
Notifies the external quit requester that the quit will proceed, and performs the default QuitStrategy.

Method Details

performQuit

void performQuit()
Notifies the external quit requester that the quit will proceed, and performs the default QuitStrategy.

cancelQuit

void cancelQuit()
Notifies the external quit requester that the user has explicitly canceled the pending quit, and leaves the application running.

Note: this will cancel a pending log-out, restart, or shutdown.

© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/awt/desktop/QuitResponse.html