Finish code sweep
[nikiroo-utils.git] / src / jexer / teditor / Highlighter.java
index 9576ad1e52b0b9ddd854a5693b64122873228373..4a1ae903a33e0447d5694619a088829f4c6d14f2 100644 (file)
@@ -39,11 +39,19 @@ import jexer.bits.Color;
  */
 public class Highlighter {
 
+    // ------------------------------------------------------------------------
+    // Variables --------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * The highlighter colors.
      */
     private SortedMap<String, CellAttributes> colors;
 
+    // ------------------------------------------------------------------------
+    // Constructors -----------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * Public constructor sets the theme to the default.
      */
@@ -51,6 +59,10 @@ public class Highlighter {
         colors = new TreeMap<String, CellAttributes>();
     }
 
+    // ------------------------------------------------------------------------
+    // Highlighter ------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * See if this is a character that should split a word.
      *
@@ -129,5 +141,4 @@ public class Highlighter {
 
     }
 
-
 }