@@ -59,11 +59,11 @@ public interface Application {
5959 public LostFocusBehavior getLostFocusBehavior ();
6060
6161 /**
62- * Change the application's behavior when unfocused.
62+ * Changes the application's behavior when unfocused.
6363 *
6464 * By default, the application will
6565 * {@link LostFocusBehavior#ThrottleOnLostFocus throttle the update loop}
66- * so as to not take 100% CPU usage when it is not in focus, e.g.
66+ * so as not to use 100% of the CPU when it is out of focus, e.g.
6767 * alt-tabbed, minimized, or obstructed by another window.
6868 *
6969 * @param lostFocusBehavior The new lost focus behavior to use.
@@ -82,15 +82,15 @@ public interface Application {
8282 public boolean isPauseOnLostFocus ();
8383
8484 /**
85- * Enable or disable pause on lost focus.
85+ * Enables or disables pause on lost focus.
8686 * <p>
8787 * By default, pause on lost focus is enabled.
8888 * If enabled, the application will stop updating
8989 * when it loses focus or becomes inactive (e.g. alt-tab).
9090 * For online or real-time applications, this might not be preferable,
91- * so this feature should be set to disabled. For other applications,
92- * it is best to keep it on so that CPU usage is not used when
93- * not necessary .
91+ * so this feature should be disabled. For other applications,
92+ * it is best to keep it enabled so that CPU is not used
93+ * unnecessarily .
9494 *
9595 * @param pauseOnLostFocus True to enable pause on lost focus, false
9696 * otherwise.
0 commit comments