Uses of Class
com.googlecode.lanterna.terminal.swing.TerminalEmulatorAutoCloseTrigger
-
Packages that use TerminalEmulatorAutoCloseTrigger Package Description com.googlecode.lanterna.terminal com.googlecode.lanterna.terminal.swing -
-
Uses of TerminalEmulatorAutoCloseTrigger in com.googlecode.lanterna.terminal
Fields in com.googlecode.lanterna.terminal with type parameters of type TerminalEmulatorAutoCloseTrigger Modifier and Type Field Description private java.util.EnumSet<TerminalEmulatorAutoCloseTrigger>
DefaultTerminalFactory. autoCloseTriggers
Methods in com.googlecode.lanterna.terminal with parameters of type TerminalEmulatorAutoCloseTrigger Modifier and Type Method Description DefaultTerminalFactory
DefaultTerminalFactory. addTerminalEmulatorFrameAutoCloseTrigger(TerminalEmulatorAutoCloseTrigger autoCloseTrigger)
Adds an auto-close trigger to use on created SwingTerminalFrames created by this factoryDefaultTerminalFactory
DefaultTerminalFactory. setTerminalEmulatorFrameAutoCloseTrigger(TerminalEmulatorAutoCloseTrigger autoCloseTrigger)
Sets the auto-close trigger to use on created SwingTerminalFrames created by this factory. -
Uses of TerminalEmulatorAutoCloseTrigger in com.googlecode.lanterna.terminal.swing
Fields in com.googlecode.lanterna.terminal.swing with type parameters of type TerminalEmulatorAutoCloseTrigger Modifier and Type Field Description private java.util.EnumSet<TerminalEmulatorAutoCloseTrigger>
AWTTerminalFrame. autoCloseTriggers
private java.util.EnumSet<TerminalEmulatorAutoCloseTrigger>
SwingTerminalFrame. autoCloseTriggers
Methods in com.googlecode.lanterna.terminal.swing that return TerminalEmulatorAutoCloseTrigger Modifier and Type Method Description static TerminalEmulatorAutoCloseTrigger
TerminalEmulatorAutoCloseTrigger. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TerminalEmulatorAutoCloseTrigger[]
TerminalEmulatorAutoCloseTrigger. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.googlecode.lanterna.terminal.swing that return types with arguments of type TerminalEmulatorAutoCloseTrigger Modifier and Type Method Description java.util.Set<TerminalEmulatorAutoCloseTrigger>
AWTTerminalFrame. getAutoCloseTrigger()
Returns the auto-close triggers used by the AWTTerminalFramejava.util.Set<TerminalEmulatorAutoCloseTrigger>
SwingTerminalFrame. getAutoCloseTrigger()
Returns the auto-close triggers used by the SwingTerminalFrameMethods in com.googlecode.lanterna.terminal.swing with parameters of type TerminalEmulatorAutoCloseTrigger Modifier and Type Method Description void
AWTTerminalFrame. addAutoCloseTrigger(TerminalEmulatorAutoCloseTrigger autoCloseTrigger)
SwingTerminalFrame
SwingTerminalFrame. addAutoCloseTrigger(TerminalEmulatorAutoCloseTrigger autoCloseTrigger)
Adds an auto-close trigger to use on this terminal.SwingTerminalFrame
SwingTerminalFrame. setAutoCloseTrigger(TerminalEmulatorAutoCloseTrigger autoCloseTrigger)
Sets the auto-close trigger to use on this terminal.Constructors in com.googlecode.lanterna.terminal.swing with parameters of type TerminalEmulatorAutoCloseTrigger Constructor Description AWTTerminalFrame(TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new AWTTerminalFrame with an optional list of auto-close triggersAWTTerminalFrame(java.lang.String title, AWTTerminal awtTerminal, TerminalEmulatorAutoCloseTrigger... autoCloseTrigger)
AWTTerminalFrame(java.lang.String title, TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new AWTTerminalFrame with a given window title and an optional list of auto-close triggersAWTTerminalFrame(java.lang.String title, TerminalEmulatorDeviceConfiguration deviceConfiguration, AWTTerminalFontConfiguration fontConfiguration, TerminalEmulatorColorConfiguration colorConfiguration, TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new AWTTerminalFrame using a specified title and a series of AWT terminal configuration objectsAWTTerminalFrame(java.lang.String title, TerminalSize terminalSize, TerminalEmulatorDeviceConfiguration deviceConfiguration, AWTTerminalFontConfiguration fontConfiguration, TerminalEmulatorColorConfiguration colorConfiguration, TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new AWTTerminalFrame using a specified title and a series of AWT terminal configuration objectsSwingTerminalFrame(TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new SwingTerminalFrame with an optional list of auto-close triggersSwingTerminalFrame(java.lang.String title, SwingTerminal swingTerminal, TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
SwingTerminalFrame(java.lang.String title, TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new SwingTerminalFrame with a specific title and an optional list of auto-close triggersSwingTerminalFrame(java.lang.String title, TerminalEmulatorDeviceConfiguration deviceConfiguration, SwingTerminalFontConfiguration fontConfiguration, TerminalEmulatorColorConfiguration colorConfiguration, TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new SwingTerminalFrame using a specified title and a series of swing terminal configuration objectsSwingTerminalFrame(java.lang.String title, TerminalSize terminalSize, TerminalEmulatorDeviceConfiguration deviceConfiguration, SwingTerminalFontConfiguration fontConfiguration, TerminalEmulatorColorConfiguration colorConfiguration, TerminalEmulatorAutoCloseTrigger... autoCloseTriggers)
Creates a new SwingTerminalFrame using a specified title and a series of swing terminal configuration objects
-