Improved code readability
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / Character.java
index 74632b5..3c20ff2 100644 (file)
@@ -4,12 +4,16 @@
  */
 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
 
+/**
+ * A character in a text editor.
+ */
 public class Character {
 
+    /**
+     * The character value.
+     */
     char value;
 
-    // TODO: background and foreground colors
-
     public Character(final char value) {
         this.value = value;
     }