X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fteditor%2FHighlighter.java;h=4a1ae903a33e0447d5694619a088829f4c6d14f2;hb=615a0d99fd0aa4437116dd083147f9150d5e6527;hp=9576ad1e52b0b9ddd854a5693b64122873228373;hpb=7d922e0dfd9a6da42b84e01d52adeec6fff10025;p=nikiroo-utils.git diff --git a/src/jexer/teditor/Highlighter.java b/src/jexer/teditor/Highlighter.java index 9576ad1..4a1ae90 100644 --- a/src/jexer/teditor/Highlighter.java +++ b/src/jexer/teditor/Highlighter.java @@ -39,11 +39,19 @@ import jexer.bits.Color; */ public class Highlighter { + // ------------------------------------------------------------------------ + // Variables -------------------------------------------------------------- + // ------------------------------------------------------------------------ + /** * The highlighter colors. */ private SortedMap colors; + // ------------------------------------------------------------------------ + // Constructors ----------------------------------------------------------- + // ------------------------------------------------------------------------ + /** * Public constructor sets the theme to the default. */ @@ -51,6 +59,10 @@ public class Highlighter { colors = new TreeMap(); } + // ------------------------------------------------------------------------ + // Highlighter ------------------------------------------------------------ + // ------------------------------------------------------------------------ + /** * See if this is a character that should split a word. * @@ -129,5 +141,4 @@ public class Highlighter { } - }