Class AbstractTerminal

java.lang.Object
org.jline.terminal.impl.AbstractTerminal
All Implemented Interfaces:
Closeable, Flushable, AutoCloseable, TerminalExt, Terminal
Direct Known Subclasses:
AbstractPosixTerminal, AbstractWindowsTerminal, DumbTerminal, LineDisciplineTerminal

public abstract class AbstractTerminal extends Object implements TerminalExt
Base implementation of the Terminal interface.

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:
  • Field Details

  • Constructor Details

  • Method Details

    • setOnClose

      public void setOnClose(Runnable onClose)
    • getStatus

      public Status getStatus()
    • getStatus

      public Status getStatus(boolean create)
    • handle

      Description copied from interface: Terminal
      Registers a handler for the given Terminal.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.QUIT signal (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);
       
      Specified by:
      handle in interface Terminal
      Parameters:
      signal - the signal to register a handler for
      handler - the handler to be called when the signal is raised
      Returns:
      the previous signal handler that was registered for this signal
      See Also:
    • raise

      public void raise(Terminal.Signal signal)
      Description copied from interface: Terminal
      Raises 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:

      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.

      Specified by:
      raise in interface Terminal
      Parameters:
      signal - the signal to raise
      See Also:
    • close

      public final void close() throws IOException
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Throws:
      IOException
    • doClose

      protected void doClose() throws IOException
      Throws:
      IOException
    • echoSignal

      protected void echoSignal(Terminal.Signal signal)
    • enterRawMode

      public Attributes enterRawMode()
      Description copied from interface: Terminal
      Puts 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:
      enterRawMode in interface Terminal
      Returns:
      the original terminal attributes before entering raw mode
      See Also:
    • echo

      public boolean echo()
      Description copied from interface: Terminal
      Returns 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.

      Specified by:
      echo in interface Terminal
      Returns:
      true if echo is enabled, false otherwise
      See Also:
    • echo

      public boolean echo(boolean echo)
      Description copied from interface: Terminal
      Enables 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
       
      Specified by:
      echo in interface Terminal
      Parameters:
      echo - true to enable echo, false to disable it
      Returns:
      the previous echo state
    • getName

      public String getName()
      Description copied from interface: Terminal
      Returns 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.

      Specified by:
      getName in interface Terminal
      Returns:
      the terminal name
    • getType

      public String getType()
      Description copied from interface: Terminal
      Returns 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:

      Specified by:
      getType in interface Terminal
      Returns:
      the terminal type identifier
      See Also:
    • getKind

      public String getKind()
    • encoding

      public Charset encoding()
      Description copied from interface: Terminal
      Returns the Charset that should be used to encode characters for Terminal.input() and Terminal.output().

      This method returns a general encoding that can be used for both input and output. For stream-specific encodings, use Terminal.stdinEncoding(), Terminal.stdoutEncoding(), and Terminal.stderrEncoding().

      Specified by:
      encoding in interface Terminal
      Returns:
      The terminal encoding
      See Also:
    • stdinEncoding

      public Charset stdinEncoding()
      Description copied from interface: Terminal
      Returns the Charset that should be used to decode characters from standard input (Terminal.input()).

      This method returns the encoding specifically for standard input. If no specific stdin encoding was configured, it falls back to the general encoding from Terminal.encoding().

      Specified by:
      stdinEncoding in interface Terminal
      Returns:
      The standard input encoding
      See Also:
    • stdoutEncoding

      public Charset stdoutEncoding()
      Description copied from interface: Terminal
      Returns the Charset that should be used to encode characters for standard output (Terminal.output()).

      This method returns the encoding specifically for standard output. If no specific stdout encoding was configured, it falls back to the general encoding from Terminal.encoding().

      Specified by:
      stdoutEncoding in interface Terminal
      Returns:
      The standard output encoding
      See Also:
    • stderrEncoding

      public Charset stderrEncoding()
      Description copied from interface: Terminal
      Returns the Charset that should be used to encode characters for standard error.

      This method returns the encoding specifically for standard error. If no specific stderr encoding was configured, it falls back to the general encoding from Terminal.encoding().

      Specified by:
      stderrEncoding in interface Terminal
      Returns:
      The standard error encoding
      See Also:
    • flush

      public void flush()
      Description copied from interface: Terminal
      Flushes 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();
       
      Specified by:
      flush in interface Flushable
      Specified by:
      flush in interface Terminal
    • puts

      public boolean puts(InfoCmp.Capability capability, Object... params)
      Description copied from interface: Terminal
      Outputs 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);
       
      Specified by:
      puts in interface Terminal
      Parameters:
      capability - the terminal capability to use
      params - the parameters for the capability
      Returns:
      true if the capability is supported and was output, false otherwise
      See Also:
    • getBooleanCapability

      public boolean getBooleanCapability(InfoCmp.Capability capability)
      Description copied from interface: Terminal
      Returns 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:
      getBooleanCapability in interface Terminal
      Parameters:
      capability - the boolean capability to check
      Returns:
      true if the terminal supports the capability, false otherwise
    • getNumericCapability

      public Integer getNumericCapability(InfoCmp.Capability capability)
      Description copied from interface: Terminal
      Returns 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:
      getNumericCapability in interface Terminal
      Parameters:
      capability - the numeric capability to retrieve
      Returns:
      the value of the capability, or null if the capability is not supported
    • getStringCapability

      public String getStringCapability(InfoCmp.Capability capability)
      Description copied from interface: Terminal
      Returns 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:
      getStringCapability in interface Terminal
      Parameters:
      capability - the string capability to retrieve
      Returns:
      the string value of the capability, or null if the capability is not supported
      See Also:
    • parseInfoCmp

      protected void parseInfoCmp()
    • getCursorPosition

      public Cursor getCursorPosition(IntConsumer discarded)
      Description copied from interface: Terminal
      Query 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 using org.jline.keymap.BindingReader#runMacro(String)
      Specified by:
      getCursorPosition in interface Terminal
      Parameters:
      discarded - a consumer receiving discarded characters
      Returns:
      null if cursor position reporting is not supported or a valid cursor position
    • hasMouseSupport

      public boolean hasMouseSupport()
      Description copied from interface: Terminal
      Returns 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:
      hasMouseSupport in interface Terminal
      Returns:
      true if the terminal supports mouse tracking, false otherwise
      See Also:
    • getCurrentMouseTracking

      public Terminal.MouseTracking getCurrentMouseTracking()
      Description copied from interface: Terminal
      Returns the current mouse tracking mode.
      Specified by:
      getCurrentMouseTracking in interface Terminal
      See Also:
    • trackMouse

      public boolean trackMouse(Terminal.MouseTracking tracking)
      Description copied from interface: Terminal
      Enables 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_mouse sequence, followed by data that describes the specific mouse event.

      The tracking mode determines which mouse events are reported:

      To process mouse events, applications should:

      1. Enable mouse tracking by calling this method with the desired mode
      2. Monitor the input stream for the InfoCmp.Capability.key_mouse sequence
      3. When this sequence is detected, call Terminal.readMouseEvent() to decode the event
      4. Process the returned MouseEvent as 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:
      trackMouse in interface Terminal
      Parameters:
      tracking - the mouse tracking mode to enable, or Terminal.MouseTracking.Off to disable tracking
      Returns:
      true if the requested mouse tracking mode is supported, false otherwise
      See Also:
    • readMouseEvent

      public MouseEvent readMouseEvent()
      Description copied from interface: Terminal
      Read a MouseEvent from the terminal input stream. Such an event must have been detected by scanning the terminal's InfoCmp.Capability.key_mouse in the stream immediately before reading the event.

      This method should be called after detecting the terminal's InfoCmp.Capability.key_mouse sequence 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 a MouseEvent object 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:

      1. Enable mouse tracking with Terminal.trackMouse(MouseTracking)
      2. Read input from the terminal
      3. When the InfoCmp.Capability.key_mouse sequence is detected, call this method
      4. 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:
      readMouseEvent in interface Terminal
      Returns:
      the decoded mouse event containing event type, button, modifiers, and coordinates
      See Also:
    • readMouseEvent

      public MouseEvent readMouseEvent(IntSupplier reader)
      Description copied from interface: Terminal
      Reads 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 MouseEvent object 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:
      readMouseEvent in interface Terminal
      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

      public MouseEvent readMouseEvent(String prefix)
      Description copied from interface: Terminal
      Reads 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:
      readMouseEvent in interface Terminal
      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

      public MouseEvent readMouseEvent(IntSupplier reader, String prefix)
      Description copied from interface: Terminal
      Reads 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) and Terminal.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:
      readMouseEvent in interface Terminal
      Parameters:
      reader - the input supplier that provides the raw bytes of the mouse event data
      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:
    • hasFocusSupport

      public boolean hasFocusSupport()
      Description copied from interface: Terminal
      Returns 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:
      hasFocusSupport in interface Terminal
      Returns:
      true if the terminal supports focus tracking, false otherwise
      See Also:
    • trackFocus

      public boolean trackFocus(boolean tracking)
      Description copied from interface: Terminal
      Enables 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:
      trackFocus in interface Terminal
      Parameters:
      tracking - true to enable focus tracking, false to disable it
      Returns:
      true if focus tracking is supported and the operation succeeded, false otherwise
      See Also:
    • checkInterrupted

      protected void checkInterrupted() throws InterruptedIOException
      Throws:
      InterruptedIOException
    • canPauseResume

      public boolean canPauseResume()
      Description copied from interface: Terminal
      Whether this terminal supports Terminal.pause() and Terminal.resume() calls.
      Specified by:
      canPauseResume in interface Terminal
      Returns:
      whether this terminal supports Terminal.pause() and Terminal.resume() calls.
      See Also:
    • pause

      public void pause()
      Description copied from interface: Terminal
      Temporarily 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 of true.

      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();
       
      Specified by:
      pause in interface Terminal
      See Also:
    • pause

      public void pause(boolean wait) throws InterruptedException
      Description copied from interface: Terminal
      Stop reading the input stream and optionally wait for the underlying threads to finish.
      Specified by:
      pause in interface Terminal
      Parameters:
      wait - true to wait until the terminal is actually paused
      Throws:
      InterruptedException - if the call has been interrupted
    • resume

      public void resume()
      Description copied from interface: Terminal
      Resumes 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() or Terminal.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();
       
      Specified by:
      resume in interface Terminal
      See Also:
    • paused

      public boolean paused()
      Description copied from interface: Terminal
      Check 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.
      Specified by:
      paused in interface Terminal
      Returns:
      whether the terminal is currently reading the input stream or not
      See Also:
    • getPalette

      public ColorPalette getPalette()
      Description copied from interface: Terminal
      Returns 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:
      getPalette in interface Terminal
      Returns:
      the terminal's color palette
      See Also:
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getDefaultForegroundColor

      public int getDefaultForegroundColor()
      Get the terminal's default foreground color. This method should be overridden by concrete implementations.
      Specified by:
      getDefaultForegroundColor in interface Terminal
      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:
      getDefaultBackgroundColor in interface Terminal
      Returns:
      the RGB value of the default background color, or -1 if not available
      See Also: