Version 2.0.0: update sources
[jvcard.git] / src / com / googlecode / lanterna / terminal / swing / TerminalEmulatorAutoCloseTrigger.java
diff --git a/src/com/googlecode/lanterna/terminal/swing/TerminalEmulatorAutoCloseTrigger.java b/src/com/googlecode/lanterna/terminal/swing/TerminalEmulatorAutoCloseTrigger.java
deleted file mode 100644 (file)
index 3f0eba2..0000000
+++ /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,
-    ;
-}