Change internal classes as private definitions
Signed-off-by: Emmanuel Bigeon <emmanuel@bigeon.fr>
This commit is contained in:
parent
0562faad70
commit
d87aabd465
@ -16,7 +16,7 @@ public final class ConsoleOutputManager implements ConsoleOutputDisplay {
|
||||
/** A runnable appending text to the content of a {@link Text} component.
|
||||
*
|
||||
* @author Emmanuel Bigeon */
|
||||
public static class TextAppendingRunnable implements Runnable {
|
||||
private static class TextAppendingRunnable implements Runnable {
|
||||
/** The text to append on a line (possibly new). */
|
||||
private final String next;
|
||||
/** The {@link Text} component. */
|
||||
@ -26,7 +26,7 @@ public final class ConsoleOutputManager implements ConsoleOutputDisplay {
|
||||
*
|
||||
* @param text the component to update
|
||||
* @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.next = next;
|
||||
}
|
||||
@ -45,7 +45,8 @@ public final class ConsoleOutputManager implements ConsoleOutputDisplay {
|
||||
/** The local implementation of the forwarding runnable.
|
||||
*
|
||||
* @author Emmanuel Bigeon */
|
||||
public static final class ToSWTConsoleForwardRunnable extends AOutputForwardRunnable {
|
||||
private static final class ToSWTConsoleForwardRunnable
|
||||
extends AOutputForwardRunnable {
|
||||
/** The running status. */
|
||||
private boolean running = true;
|
||||
/** The console output. */
|
||||
|
Loading…
Reference in New Issue
Block a user