Class AbstractTerminal
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable,TerminalExt,Terminal
- Direct Known Subclasses:
AbstractPosixTerminal,AbstractWindowsTerminal,DumbTerminal,LineDisciplineTerminal
This abstract class provides a common foundation for terminal implementations,
handling many of the core terminal functions such as signal handling, attribute
management, and capability lookup. It implements most of the methods defined in
the Terminal interface, leaving only a few abstract
methods to be implemented by concrete subclasses.
Terminal implementations typically extend this class and provide implementations for the abstract methods related to their specific platform or environment. This class handles the common functionality, allowing subclasses to focus on platform-specific details.
Key features provided by this class include:
- Signal handling infrastructure
- Terminal attribute management
- Terminal capability lookup and caching
- Size and cursor position handling
- Mouse and focus tracking support
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.jline.terminal.Terminal
Terminal.MouseTracking, Terminal.Signal, Terminal.SignalHandler -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final Set<InfoCmp.Capability> protected Terminal.MouseTrackingprotected final Charsetprotected final Map<Terminal.Signal, Terminal.SignalHandler> protected final Map<InfoCmp.Capability, Integer> protected final Stringprotected Runnableprotected final ColorPaletteprotected Statusprotected final Map<InfoCmp.Capability, String> protected final StringFields inherited from interface org.jline.terminal.Terminal
TYPE_DUMB, TYPE_DUMB_COLOR -
Constructor Summary
ConstructorsConstructorDescriptionAbstractTerminal(String name, String type) AbstractTerminal(String name, String type, Charset encoding, Terminal.SignalHandler signalHandler) -
Method Summary
Modifier and TypeMethodDescriptionbooleanWhether this terminal supportsTerminal.pause()andTerminal.resume()calls.protected voidfinal voidclose()protected voiddoClose()booleanecho()Returns whether the terminal is currently echoing input characters.booleanecho(boolean echo) Enables or disables echoing of input characters.protected voidechoSignal(Terminal.Signal signal) encoding()Returns theCharsetthat should be used to encode characters forTerminal.input()andTerminal.output().Puts the terminal into raw mode.voidflush()Flushes any buffered output to the terminal.booleangetBooleanCapability(InfoCmp.Capability capability) Returns whether the terminal supports the specified boolean capability.Returns the current mouse tracking mode.getCursorPosition(IntConsumer discarded) Query the terminal to report the cursor position.intGet the terminal's default background color.intGet the terminal's default foreground color.getKind()getName()Returns the name of this terminal.getNumericCapability(InfoCmp.Capability capability) Returns the value of the specified numeric capability for this terminal.Returns the color palette for this terminal.getStatus(boolean create) getStringCapability(InfoCmp.Capability capability) Returns the string value of the specified capability for this terminal.getType()Returns the type of this terminal.handle(Terminal.Signal signal, Terminal.SignalHandler handler) Registers a handler for the givenTerminal.Signal.booleanReturns whether the terminal has support for focus tracking.booleanReturns whether the terminal has support for mouse tracking.protected voidvoidpause()Temporarily stops reading the input stream.voidpause(boolean wait) Stop reading the input stream and optionally wait for the underlying threads to finish.booleanpaused()Check whether the terminal is currently reading the input stream or not.booleanputs(InfoCmp.Capability capability, Object... params) Outputs a terminal control string for the specified capability.voidraise(Terminal.Signal signal) Raises the specified signal, triggering any registered handlers.Read a MouseEvent from the terminal input stream.readMouseEvent(String prefix) Reads and decodes a mouse event with a specified prefix that has already been consumed.readMouseEvent(IntSupplier reader) Reads and decodes a mouse event using the provided input supplier.readMouseEvent(IntSupplier reader, String prefix) Reads and decodes a mouse event using the provided input supplier with a specified prefix that has already been consumed.voidresume()Resumes reading the input stream after it has been paused.voidsetOnClose(Runnable onClose) toString()booleantrackFocus(boolean tracking) Enables or disables focus tracking mode.booleantrackMouse(Terminal.MouseTracking tracking) Enables or disables mouse tracking with the specified mode.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.jline.terminal.Terminal
getAttributes, getBufferSize, getHeight, getSize, getWidth, input, output, reader, setAttributes, setSize, writerMethods inherited from interface org.jline.terminal.spi.TerminalExt
getProvider, getSystemStream
-
Field Details
-
name
-
type
-
encoding
-
handlers
-
bools
-
ints
-
strings
-
palette
-
status
-
onClose
-
currentMouseTracking
-
-
Constructor Details
-
AbstractTerminal
- Throws:
IOException
-
AbstractTerminal
public AbstractTerminal(String name, String type, Charset encoding, Terminal.SignalHandler signalHandler) throws IOException - Throws:
IOException
-
-
Method Details
-
setOnClose
-
getStatus
-
getStatus
-
handle
Description copied from interface:TerminalRegisters a handler for the givenTerminal.Signal.This method allows the application to specify custom behavior when a particular signal is raised. The handler's
Terminal.SignalHandler.handle(Signal)method will be called whenever the specified signal is raised.Note that the JVM does not easily allow catching the
Terminal.Signal.QUITsignal (Ctrl+\), which typically causes a thread dump to be displayed. This signal handling is mainly effective when connecting through an SSH socket to a virtual terminal.Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Handle window resize events terminal.handle(Signal.WINCH, signal -> { Size size = terminal.getSize(); terminal.writer().println("\nTerminal resized to " + size.getColumns() + "x" + size.getRows()); terminal.flush(); }); // Ignore interrupt signal terminal.handle(Signal.INT, SignalHandler.SIG_IGN); -
raise
Description copied from interface:TerminalRaises the specified signal, triggering any registered handlers.This method manually triggers a signal, causing any registered handler for that signal to be called. This is typically not a method that application code would call directly, but is used internally by terminal implementations.
When accessing a terminal through an SSH or Telnet connection, signals may be conveyed by the protocol and need to be raised when they reach the terminal code. Terminal implementations automatically raise signals when the input stream receives characters mapped to special control characters:
Attributes.ControlChar.VINTR(typically Ctrl+C) - RaisesTerminal.Signal.INTAttributes.ControlChar.VQUIT(typically Ctrl+\) - RaisesTerminal.Signal.QUITAttributes.ControlChar.VSUSP(typically Ctrl+Z) - RaisesTerminal.Signal.TSTP
In some cases, application code might want to programmatically raise signals to trigger specific behaviors, such as simulating a window resize event by raising
Terminal.Signal.WINCH. -
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
doClose
- Throws:
IOException
-
echoSignal
-
enterRawMode
Description copied from interface:TerminalPuts the terminal into raw mode.In raw mode, input is available character by character, terminal-generated signals are disabled, and special character processing is disabled. This mode is typically used for full-screen interactive applications like text editors.
This method modifies the terminal attributes to configure raw mode and returns the original attributes, which can be used to restore the terminal to its previous state.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); Attributes originalAttributes = terminal.enterRawMode(); // Use terminal in raw mode... // Restore original attributes when done terminal.setAttributes(originalAttributes);
- Specified by:
enterRawModein interfaceTerminal- Returns:
- the original terminal attributes before entering raw mode
- See Also:
-
echo
public boolean echo()Description copied from interface:TerminalReturns whether the terminal is currently echoing input characters.When echo is enabled, characters typed by the user are automatically displayed on the screen. When echo is disabled, input characters are not displayed, which is useful for password input or other sensitive information.
-
echo
public boolean echo(boolean echo) Description copied from interface:TerminalEnables or disables echoing of input characters.When echo is enabled, characters typed by the user are automatically displayed on the screen. When echo is disabled, input characters are not displayed, which is useful for password input or other sensitive information.
Example usage for password input:
Terminal terminal = TerminalBuilder.terminal(); boolean oldEcho = terminal.echo(false); // Disable echo String password = readPassword(terminal); terminal.echo(oldEcho); // Restore previous echo state
-
getName
Description copied from interface:TerminalReturns the name of this terminal.The terminal name is typically a descriptive identifier that can be used for logging or debugging purposes. It may reflect the terminal type, connection method, or other distinguishing characteristics.
-
getType
Description copied from interface:TerminalReturns the type of this terminal.The terminal type is a string identifier that describes the terminal's capabilities and behavior. Common terminal types include "xterm", "vt100", "ansi", and "dumb". This type is often used to look up terminal capabilities in the terminfo database.
Special terminal types include:
Terminal.TYPE_DUMB- A terminal with minimal capabilities, typically not supporting cursor movement or colorsTerminal.TYPE_DUMB_COLOR- A dumb terminal that supports basic color output
-
getKind
-
encoding
Description copied from interface:TerminalReturns theCharsetthat should be used to encode characters forTerminal.input()andTerminal.output(). -
flush
public void flush()Description copied from interface:TerminalFlushes any buffered output to the terminal.Terminal implementations may buffer output for efficiency. This method ensures that any buffered data is written to the terminal immediately. It's important to call this method when immediate display of output is required, such as when prompting for user input or updating status information.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); terminal.writer().print("Enter your name: "); terminal.flush(); // Ensure the prompt is displayed before reading input String name = terminal.reader().readLine(); -
puts
Description copied from interface:TerminalOutputs a terminal control string for the specified capability.This method formats and outputs a control sequence for the specified terminal capability, with the given parameters. It's used to perform terminal operations such as cursor movement, screen clearing, color changes, and other terminal-specific functions.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Clear the screen terminal.puts(Capability.clear_screen); // Move cursor to position (10, 20) terminal.puts(Capability.cursor_address, 20, 10); // Set foreground color to red terminal.puts(Capability.set_a_foreground, 1);
-
getBooleanCapability
Description copied from interface:TerminalReturns whether the terminal supports the specified boolean capability.Boolean capabilities indicate whether the terminal supports specific features, such as color support, automatic margins, or status line support.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Check if terminal supports colors if (terminal.getBooleanCapability(Capability.colors)) { // Use color output } else { // Use monochrome output }- Specified by:
getBooleanCapabilityin interfaceTerminal- Parameters:
capability- the boolean capability to check- Returns:
trueif the terminal supports the capability,falseotherwise
-
getNumericCapability
Description copied from interface:TerminalReturns the value of the specified numeric capability for this terminal.Numeric capabilities represent terminal properties with numeric values, such as the maximum number of colors supported, the number of function keys, or timing parameters for certain operations.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Get the number of colors supported by the terminal Integer colors = terminal.getNumericCapability(Capability.max_colors); if (colors != null && colors >= 256) { // Terminal supports 256 colors }- Specified by:
getNumericCapabilityin interfaceTerminal- Parameters:
capability- the numeric capability to retrieve- Returns:
- the value of the capability, or
nullif the capability is not supported
-
getStringCapability
Description copied from interface:TerminalReturns the string value of the specified capability for this terminal.String capabilities represent terminal control sequences that can be used to perform various operations, such as moving the cursor, changing colors, clearing the screen, or ringing the bell. These sequences can be parameterized using the
Terminal.puts(Capability, Object...)method.Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Get the control sequence for clearing the screen String clearScreen = terminal.getStringCapability(Capability.clear_screen); if (clearScreen != null) { // Use the sequence directly terminal.writer().print(clearScreen); terminal.flush(); }- Specified by:
getStringCapabilityin interfaceTerminal- Parameters:
capability- the string capability to retrieve- Returns:
- the string value of the capability, or
nullif the capability is not supported - See Also:
-
parseInfoCmp
protected void parseInfoCmp() -
getCursorPosition
Description copied from interface:TerminalQuery the terminal to report the cursor position. As the response is read from the input stream, some characters may be read before the cursor position is actually read. Those characters can be given back usingorg.jline.keymap.BindingReader#runMacro(String)- Specified by:
getCursorPositionin interfaceTerminal- Parameters:
discarded- a consumer receiving discarded characters- Returns:
nullif cursor position reporting is not supported or a valid cursor position
-
hasMouseSupport
public boolean hasMouseSupport()Description copied from interface:TerminalReturns whether the terminal has support for mouse tracking.Mouse support allows the terminal to report mouse events such as clicks, movement, and wheel scrolling. Not all terminals support mouse tracking, so this method should be called before attempting to enable mouse tracking with
Terminal.trackMouse(MouseTracking).Common terminal emulators that support mouse tracking include xterm, iTerm2, and modern versions of GNOME Terminal and Konsole. Terminal multiplexers like tmux and screen may also support mouse tracking depending on their configuration and the capabilities of the underlying terminal.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); if (terminal.hasMouseSupport()) { // Enable mouse tracking terminal.trackMouse(MouseTracking.Normal); // Process mouse events // ... } else { System.out.println("Mouse tracking not supported by this terminal"); }- Specified by:
hasMouseSupportin interfaceTerminal- Returns:
trueif the terminal supports mouse tracking,falseotherwise- See Also:
-
getCurrentMouseTracking
Description copied from interface:TerminalReturns the current mouse tracking mode.- Specified by:
getCurrentMouseTrackingin interfaceTerminal- See Also:
-
trackMouse
Description copied from interface:TerminalEnables or disables mouse tracking with the specified mode.This method configures the terminal to report mouse events according to the specified tracking mode. When mouse tracking is enabled, the terminal will send special escape sequences to the input stream whenever mouse events occur. These sequences begin with the
InfoCmp.Capability.key_mousesequence, followed by data that describes the specific mouse event.The tracking mode determines which mouse events are reported:
Terminal.MouseTracking.Off- Disables mouse trackingTerminal.MouseTracking.Normal- Reports button press and release eventsTerminal.MouseTracking.Button- Reports button press, release, and motion events while buttons are pressedTerminal.MouseTracking.Any- Reports all mouse events, including movement without buttons pressed
To process mouse events, applications should:
- Enable mouse tracking by calling this method with the desired mode
- Monitor the input stream for the
InfoCmp.Capability.key_mousesequence - When this sequence is detected, call
Terminal.readMouseEvent()to decode the event - Process the returned
MouseEventas needed
Example usage:
Terminal terminal = TerminalBuilder.terminal(); if (terminal.hasMouseSupport()) { // Enable tracking of all mouse events boolean supported = terminal.trackMouse(MouseTracking.Any); if (supported) { System.out.println("Mouse tracking enabled"); // Set up input processing to detect and handle mouse events } }- Specified by:
trackMousein interfaceTerminal- Parameters:
tracking- the mouse tracking mode to enable, orTerminal.MouseTracking.Offto disable tracking- Returns:
trueif the requested mouse tracking mode is supported,falseotherwise- See Also:
-
readMouseEvent
Description copied from interface:TerminalRead a MouseEvent from the terminal input stream. Such an event must have been detected by scanning the terminal'sInfoCmp.Capability.key_mousein the stream immediately before reading the event.This method should be called after detecting the terminal's
InfoCmp.Capability.key_mousesequence in the input stream, which indicates that a mouse event has occurred. The method reads the necessary data from the input stream and decodes it into aMouseEventobject containing information about the event type, button, modifiers, and coordinates.Before calling this method, mouse tracking must be enabled using
Terminal.trackMouse(MouseTracking)with an appropriate tracking mode.The typical pattern for handling mouse events is:
- Enable mouse tracking with
Terminal.trackMouse(MouseTracking) - Read input from the terminal
- When the
InfoCmp.Capability.key_mousesequence is detected, call this method - Process the returned
MouseEvent
Example usage:
Terminal terminal = TerminalBuilder.terminal(); if (terminal.hasMouseSupport()) { terminal.trackMouse(MouseTracking.Normal); // Read input and look for mouse events String keyMouse = terminal.getStringCapability(Capability.key_mouse); // When keyMouse sequence is detected in the input: MouseEvent event = terminal.readMouseEvent(); System.out.println("Mouse event: " + event.getType() + " at " + event.getX() + "," + event.getY()); }- Specified by:
readMouseEventin interfaceTerminal- Returns:
- the decoded mouse event containing event type, button, modifiers, and coordinates
- See Also:
- Enable mouse tracking with
-
readMouseEvent
Description copied from interface:TerminalReads and decodes a mouse event using the provided input supplier.This method is similar to
Terminal.readMouseEvent(), but allows reading mouse event data from a custom input source rather than the terminal's default input stream. This can be useful in situations where input is being processed through a different channel or when implementing custom input handling.The input supplier should provide the raw bytes of the mouse event data as integers. The method will read the necessary data from the supplier and decode it into a
MouseEventobject containing information about the event type, button, modifiers, and coordinates.This method is primarily intended for advanced use cases where the standard
Terminal.readMouseEvent()method is not sufficient.Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Create a custom input supplier IntSupplier customReader = new IntSupplier() { private byte[] data = ...; // Mouse event data private int index = 0; public int getAsInt() { return (index < data.length) ? data[index++] & 0xFF : -1; } }; // Read mouse event using the custom supplier MouseEvent event = terminal.readMouseEvent(customReader);- Specified by:
readMouseEventin interfaceTerminal- Parameters:
reader- the input supplier that provides the raw bytes of the mouse event data- Returns:
- the decoded mouse event containing event type, button, modifiers, and coordinates
- See Also:
-
readMouseEvent
Description copied from interface:TerminalReads and decodes a mouse event with a specified prefix that has already been consumed.This method is similar to
Terminal.readMouseEvent(), but it allows specifying a prefix that has already been consumed. This is useful when the mouse event prefix (e.g., "\033[invalid input: '<'" or "\033[M") has been consumed by the key binding detection, and we need to continue parsing from the current position.This method is primarily intended for advanced use cases where the standard
Terminal.readMouseEvent()method is not sufficient, particularly when dealing with key binding systems that may consume part of the mouse event sequence.- Specified by:
readMouseEventin interfaceTerminal- Parameters:
prefix- the prefix that has already been consumed, or null if none- Returns:
- the decoded mouse event containing event type, button, modifiers, and coordinates
- See Also:
-
readMouseEvent
Description copied from interface:TerminalReads and decodes a mouse event using the provided input supplier with a specified prefix that has already been consumed.This method combines the functionality of
Terminal.readMouseEvent(IntSupplier)andTerminal.readMouseEvent(String), allowing both a custom input supplier and a prefix to be specified. This is useful for advanced input handling scenarios where both customization of the input source and handling of partially consumed sequences are needed.- Specified by:
readMouseEventin interfaceTerminal- Parameters:
reader- the input supplier that provides the raw bytes of the mouse event dataprefix- the prefix that has already been consumed, or null if none- Returns:
- the decoded mouse event containing event type, button, modifiers, and coordinates
- See Also:
-
hasFocusSupport
public boolean hasFocusSupport()Description copied from interface:TerminalReturns whether the terminal has support for focus tracking.Focus tracking allows the terminal to report when it gains or loses focus. This can be useful for applications that need to change their behavior or appearance based on whether they are currently in focus.
Not all terminals support focus tracking, so this method should be called before attempting to enable focus tracking with
Terminal.trackFocus(boolean).When focus tracking is enabled and supported, the terminal will send special escape sequences to the input stream when focus is gained ("\33[I") or lost ("\33[O"). Applications can detect these sequences to respond to focus changes.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); if (terminal.hasFocusSupport()) { // Enable focus tracking terminal.trackFocus(true); // Now the application can detect focus changes // by looking for "\33[I" and "\33[O" in the input stream } else { System.out.println("Focus tracking not supported by this terminal"); }- Specified by:
hasFocusSupportin interfaceTerminal- Returns:
trueif the terminal supports focus tracking,falseotherwise- See Also:
-
trackFocus
public boolean trackFocus(boolean tracking) Description copied from interface:TerminalEnables or disables focus tracking mode.Focus tracking allows applications to detect when the terminal window gains or loses focus. When focus tracking is enabled, the terminal will send special escape sequences to the input stream whenever the focus state changes:
- When the terminal gains focus: "\33[I" (ESC [ I)
- When the terminal loses focus: "\33[O" (ESC [ O)
Applications can monitor the input stream for these sequences to detect focus changes and respond accordingly, such as by changing the cursor appearance, pausing animations, or adjusting the display.
Not all terminals support focus tracking. Use
Terminal.hasFocusSupport()to check whether focus tracking is supported before enabling it.Example usage:
Terminal terminal = TerminalBuilder.terminal(); if (terminal.hasFocusSupport()) { // Enable focus tracking boolean enabled = terminal.trackFocus(true); if (enabled) { System.out.println("Focus tracking enabled"); // Set up input processing to detect focus change sequences } }- Specified by:
trackFocusin interfaceTerminal- Parameters:
tracking-trueto enable focus tracking,falseto disable it- Returns:
trueif focus tracking is supported and the operation succeeded,falseotherwise- See Also:
-
checkInterrupted
- Throws:
InterruptedIOException
-
canPauseResume
public boolean canPauseResume()Description copied from interface:TerminalWhether this terminal supportsTerminal.pause()andTerminal.resume()calls.- Specified by:
canPauseResumein interfaceTerminal- Returns:
- whether this terminal supports
Terminal.pause()andTerminal.resume()calls. - See Also:
-
pause
public void pause()Description copied from interface:TerminalTemporarily stops reading the input stream.This method pauses the terminal's input processing, which can be useful when transferring control to a subprocess or when the terminal needs to be in a specific state for certain operations. While paused, the terminal will not process input or handle signals that would normally be triggered by special characters in the input stream.
This method returns immediately without waiting for the terminal to actually pause. To wait until the terminal has fully paused, use
Terminal.pause(boolean)with a value oftrue.Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Pause terminal input processing before running a subprocess terminal.pause(); // Run subprocess that takes control of the terminal Process process = new ProcessBuilder("vim").inheritIO().start(); process.waitFor(); // Resume terminal input processing terminal.resume(); -
pause
Description copied from interface:TerminalStop reading the input stream and optionally wait for the underlying threads to finish.- Specified by:
pausein interfaceTerminal- Parameters:
wait-trueto wait until the terminal is actually paused- Throws:
InterruptedException- if the call has been interrupted
-
resume
public void resume()Description copied from interface:TerminalResumes reading the input stream after it has been paused.This method restarts the terminal's input processing after it has been temporarily stopped using
Terminal.pause()orTerminal.pause(boolean). Once resumed, the terminal will continue to process input and handle signals triggered by special characters in the input stream.Calling this method when the terminal is not paused has no effect.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); // Pause terminal input processing terminal.pause(); // Perform operations while terminal input is paused... // Resume terminal input processing terminal.resume();
-
paused
public boolean paused()Description copied from interface:TerminalCheck whether the terminal is currently reading the input stream or not. In order to process signal as quickly as possible, the terminal need to read the input stream and buffer it internally so that it can detect specific characters in the input stream (Ctrl+C, Ctrl+D, etc...) and raise the appropriate signals. However, there are some cases where this processing should be disabled, for example when handing the terminal control to a subprocess. -
getPalette
Description copied from interface:TerminalReturns the color palette for this terminal.The color palette provides access to the terminal's color capabilities, allowing for customization and mapping of colors to terminal-specific values. This is particularly useful for terminals that support different color modes (8-color, 256-color, or true color).
The palette allows mapping between color values and their RGB representations, and provides methods for color conversion and manipulation.
Example usage:
Terminal terminal = TerminalBuilder.terminal(); ColorPalette palette = terminal.getPalette(); // Get RGB values for a specific color int[] rgb = palette.toRgb(AttributedStyle.RED);
- Specified by:
getPalettein interfaceTerminal- Returns:
- the terminal's color palette
- See Also:
-
toString
-
getDefaultForegroundColor
public int getDefaultForegroundColor()Get the terminal's default foreground color. This method should be overridden by concrete implementations.- Specified by:
getDefaultForegroundColorin interfaceTerminal- Returns:
- the RGB value of the default foreground color, or -1 if not available
- See Also:
-
getDefaultBackgroundColor
public int getDefaultBackgroundColor()Get the terminal's default background color. This method should be overridden by concrete implementations.- Specified by:
getDefaultBackgroundColorin interfaceTerminal- Returns:
- the RGB value of the default background color, or -1 if not available
- See Also:
-