mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
19 lines
644 B
HTML
19 lines
644 B
HTML
<html>
|
|
<body>
|
|
Reports calls to <code>System.exit()</code>, <code>Runtime.exit()</code>,
|
|
and <code>Runtime.halt()</code>.
|
|
<p>
|
|
Invoking <code>System.exit()</code> or <code>Runtime.exit()</code>
|
|
calls the shutdown hooks and terminates the currently running Java
|
|
virtual machine. Invoking <code>Runtime.halt()</code> forcibly
|
|
terminates the JVM without causing shutdown hooks to be started.
|
|
Each of these methods should be used with extreme caution. Calls
|
|
to these methods make the calling code unportable to most
|
|
application servers.
|
|
</p>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
Use the option to ignore calls in main methods.
|
|
<p>
|
|
</body>
|
|
</html> |