Home | History | Annotate | Download | only in lang

Lines Matching defs:exit

1480      * This method calls the <code>exit</code> method in class
1483 * The call <code>System.exit(n)</code> is effectively equivalent to
1486 * Runtime.getRuntime().exit(n)
1489 * @param status exit status.
1492 * method doesn't allow exit with the specified status.
1493 * @see java.lang.Runtime#exit(int)
1495 public static void exit(int status) {
1496 Runtime.getRuntime().exit(status);
1566 * Enable or disable finalization on exit; doing so specifies that the
1569 * By default, finalization on exit is disabled.
1573 * with 0 as its argument to ensure the exit is allowed.
1583 * method doesn't allow the exit.
1585 * @see java.lang.Runtime#exit(int)