
org.jline.terminal.spi.TerminalExt Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2023, the original author(s).
*
* This software is distributable under the BSD license. See the terms of the
* BSD license in the documentation provided with this software.
*
* https://opensource.org/licenses/BSD-3-Clause
*/
package org.jline.terminal.spi;
import org.jline.terminal.Terminal;
/**
* The {@code TerminalExt} interface is implemented by {@code Terminal}s
* and provides access to the Terminal's internals.
*/
public interface TerminalExt extends Terminal {
/**
* Returns the {@code TerminalProvider} that created this terminal
* or {@code null} if the terminal was created with no provider.
*/
TerminalProvider getProvider();
/**
* The underlying system stream, may be {@link SystemStream#Output},
* {@link SystemStream#Error}, or {@code null} if this terminal is not bound
* to a system stream.
*/
SystemStream getSystemStream();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy