Change internal classes as private definitions

Signed-off-by: Emmanuel Bigeon <emmanuel@bigeon.fr>
This commit is contained in:
Emmanuel Bigeon 2018-11-30 22:03:43 -05:00
parent 0562faad70
commit d87aabd465

View File

@ -16,7 +16,7 @@ public final class ConsoleOutputManager implements ConsoleOutputDisplay {
/** A runnable appending text to the content of a {@link Text} component. /** A runnable appending text to the content of a {@link Text} component.
* *
* @author Emmanuel Bigeon */ * @author Emmanuel Bigeon */
public static class TextAppendingRunnable implements Runnable { private static class TextAppendingRunnable implements Runnable {
/** The text to append on a line (possibly new). */ /** The text to append on a line (possibly new). */
private final String next; private final String next;
/** The {@link Text} component. */ /** The {@link Text} component. */
@ -26,7 +26,7 @@ public final class ConsoleOutputManager implements ConsoleOutputDisplay {
* *
* @param text the component to update * @param text the component to update
* @param next the text to append */ * @param next the text to append */
private TextAppendingRunnable(final Text text, final String next) { public TextAppendingRunnable(final Text text, final String next) {
this.text = text; this.text = text;
this.next = next; this.next = next;
} }
@ -45,7 +45,8 @@ public final class ConsoleOutputManager implements ConsoleOutputDisplay {
/** The local implementation of the forwarding runnable. /** The local implementation of the forwarding runnable.
* *
* @author Emmanuel Bigeon */ * @author Emmanuel Bigeon */
public static final class ToSWTConsoleForwardRunnable extends AOutputForwardRunnable { private static final class ToSWTConsoleForwardRunnable
extends AOutputForwardRunnable {
/** The running status. */ /** The running status. */
private boolean running = true; private boolean running = true;
/** The console output. */ /** The console output. */