More PMD warnings
[fanfix.git] / src / jexer / demos / DesktopDemo.java
index 58d9893a15e2d06b755660fe41ec82e1c73eb61e..93e8597eb93753e99639d89e5b2260248eacd341 100644 (file)
@@ -36,11 +36,32 @@ import jexer.*;
  */
 public class DesktopDemo extends TDesktop {
 
+    // ------------------------------------------------------------------------
+    // Variables --------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * If true, draw the hatch.  Note package private access.
      */
     boolean drawHatch = true;
 
+    // ------------------------------------------------------------------------
+    // Constructors -----------------------------------------------------------
+    // ------------------------------------------------------------------------
+
+    /**
+     * Public constructor.
+     *
+     * @param parent parent application
+     */
+    public DesktopDemo(final TApplication parent) {
+        super(parent);
+    }
+
+    // ------------------------------------------------------------------------
+    // TDesktop ---------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * The default TDesktop draws a hatch character across everything.  This
      * version is selectable.
@@ -52,13 +73,4 @@ public class DesktopDemo extends TDesktop {
         }
     }
 
-    /**
-     * Public constructor.
-     *
-     * @param parent parent application
-     */
-    public DesktopDemo(final TApplication parent) {
-        super(parent);
-    }
-
 }