X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FGraphicsChars.java;h=b571639a0384d4e73fdbb8313da22e55c49f994b;hb=d6ee0801333ff93dffd851f4c1a44519c96c371d;hp=86265828bf2ae38e75b6130f7fae4a85bceb7537;hpb=a2018e9964f6c58742cd1e6dd0a0c63e244a89d6;p=fanfix.git diff --git a/src/jexer/bits/GraphicsChars.java b/src/jexer/bits/GraphicsChars.java index 8626582..b571639 100644 --- a/src/jexer/bits/GraphicsChars.java +++ b/src/jexer/bits/GraphicsChars.java @@ -34,11 +34,9 @@ package jexer.bits; */ public final class GraphicsChars { - /** - * Private constructor prevents accidental creation of this class. - */ - private GraphicsChars() { - } + // ------------------------------------------------------------------------ + // Constants -------------------------------------------------------------- + // ------------------------------------------------------------------------ /** * The CP437 to Unicode translation map. @@ -146,4 +144,16 @@ public final class GraphicsChars { public static final char WINDOW_LEFT_BOTTOM_DOUBLE = CP437[0xC8]; public static final char WINDOW_RIGHT_BOTTOM_DOUBLE = CP437[0xBC]; public static final char VERTICAL_BAR = CP437[0xB3]; + public static final char OCTOSTAR = CP437[0x0F]; + + // ------------------------------------------------------------------------ + // Constructors ----------------------------------------------------------- + // ------------------------------------------------------------------------ + + /** + * Private constructor prevents accidental creation of this class. + */ + private GraphicsChars() { + } + }