X-Git-Url: http://git.nikiroo.be/?p=jvcard.git;a=blobdiff_plain;f=src%2Fcom%2Fgooglecode%2Flanterna%2Fterminal%2Fswing%2FTerminalEmulatorAutoCloseTrigger.java;fp=src%2Fcom%2Fgooglecode%2Flanterna%2Fterminal%2Fswing%2FTerminalEmulatorAutoCloseTrigger.java;h=0000000000000000000000000000000000000000;hp=3f0eba219ed325f613a9836bac2d5baeb86bce15;hb=f06c81000632cfb5f525ca458f719338f55f9f66;hpb=a73a906356c971b080c36368e71a15d87e8b8d31 diff --git a/src/com/googlecode/lanterna/terminal/swing/TerminalEmulatorAutoCloseTrigger.java b/src/com/googlecode/lanterna/terminal/swing/TerminalEmulatorAutoCloseTrigger.java deleted file mode 100644 index 3f0eba2..0000000 --- a/src/com/googlecode/lanterna/terminal/swing/TerminalEmulatorAutoCloseTrigger.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.googlecode.lanterna.terminal.swing; - -/** - * This enum stored various ways the AWTTerminalFrame and SwingTerminalFrame can automatically close (hide and dispose) - * themselves when a certain condition happens. By default, auto-close is not active. - */ -public enum TerminalEmulatorAutoCloseTrigger { - /** - * Auto-close disabled - */ - DoNotAutoClose, - /** - * Close the frame when exiting from private mode - */ - CloseOnExitPrivateMode, - /** - * Close if the user presses ESC key on the keyboard - */ - CloseOnEscape, - ; -}