X-Git-Url: http://www2.svjatoslav.eu/gitweb/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Feu%2Fsvjatoslav%2Fsixth%2Fe3d%2Fgui%2FtextEditorComponent%2FCharacter.java;h=3c20ff27967258ab721b12745b4b6be44181b908;hb=8aa50f568d2edcfe974ceed4192158951e7f3215;hp=74632b51fda49e7a94a9439aeb8d1fe0283d5b2c;hpb=9d03f0af97129ee791c0b1a33703fe1e34e9c050;p=sixth-3d.git diff --git a/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Character.java b/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Character.java index 74632b5..3c20ff2 100644 --- a/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Character.java +++ b/src/main/java/eu/svjatoslav/sixth/e3d/gui/textEditorComponent/Character.java @@ -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; }