Version 2.0.0: update sources
[jvcard.git] / src / com / googlecode / lanterna / input / MouseActionType.java
diff --git a/src/com/googlecode/lanterna/input/MouseActionType.java b/src/com/googlecode/lanterna/input/MouseActionType.java
deleted file mode 100644 (file)
index 9801d2c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.googlecode.lanterna.input;
-
-/**
- * Enum type for the different kinds of mouse actions supported
- */
-public enum MouseActionType {
-    CLICK_DOWN,
-    CLICK_RELEASE,
-    SCROLL_UP,
-    SCROLL_DOWN,
-    /**
-     * Moving the mouse cursor on the screen while holding a button down
-     */
-    DRAG,
-    /**
-     * Moving the mouse cursor on the screen without holding any buttons down
-     */
-    MOVE,
-    ;
-}