Finish code sweep
[fanfix.git] / src / jexer / event / TInputEvent.java
index 46ecfacc4f1030f30c87f5a4202257480db6305e..d03ef01e55600e23a7a246fa77a1fd852d352e9d 100644 (file)
@@ -35,11 +35,31 @@ import java.util.Date;
  */
 public abstract class TInputEvent {
 
+    // ------------------------------------------------------------------------
+    // Variables --------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * Time at which event was generated.
      */
     private Date time;
 
+    // ------------------------------------------------------------------------
+    // Constructors -----------------------------------------------------------
+    // ------------------------------------------------------------------------
+
+    /**
+     * Protected contructor.
+     */
+    protected TInputEvent() {
+        // Save the current time
+        time = new Date();
+    }
+
+    // ------------------------------------------------------------------------
+    // TInputEvent ------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * Get time.
      *
@@ -49,11 +69,4 @@ public abstract class TInputEvent {
         return time;
     }
 
-    /**
-     * Protected contructor.
-     */
-    protected TInputEvent() {
-        // Save the current time
-        time = new Date();
-    }
 }