[Japi-cvs] SF.net SVN: japi:[1053] tools/gdbControl/trunk/src/prj/net/sf/japi/tools/ gdbcontrol/Co
Status: Beta
Brought to you by:
christianhujer
From: <chr...@us...> - 2009-02-22 10:18:03
|
Revision: 1053 http://japi.svn.sourceforge.net/japi/?rev=1053&view=rev Author: christianhujer Date: 2009-02-22 10:17:57 +0000 (Sun, 22 Feb 2009) Log Message: ----------- Fixed checkstyle issues. Modified Paths: -------------- tools/gdbControl/trunk/src/prj/net/sf/japi/tools/gdbcontrol/ComWithGdb.java Modified: tools/gdbControl/trunk/src/prj/net/sf/japi/tools/gdbcontrol/ComWithGdb.java =================================================================== --- tools/gdbControl/trunk/src/prj/net/sf/japi/tools/gdbcontrol/ComWithGdb.java 2009-02-22 10:14:43 UTC (rev 1052) +++ tools/gdbControl/trunk/src/prj/net/sf/japi/tools/gdbcontrol/ComWithGdb.java 2009-02-22 10:17:57 UTC (rev 1053) @@ -171,26 +171,60 @@ /** ANSI color escape sequences. */ @SuppressWarnings({"MagicNumber", "ClassNamingConvention"}) private static final class ANSI { + + /** Ansi control sequence for switching to dark black. */ static final byte[] D_BLACK = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x30, 0x6D }; + + /** Ansi control sequence for switching to dark red. */ static final byte[] D_RED = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x31, 0x6D }; + + /** Ansi control sequence for switching to dark green. */ static final byte[] D_GREEN = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x32, 0x6D }; + + /** Ansi control sequence for switching to dark yellow. */ static final byte[] D_YELLOW = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x33, 0x6D }; + + /** Ansi control sequence for switching to dark blue. */ static final byte[] D_BLUE = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x34, 0x6D }; + + /** Ansi control sequence for switching to dark magenta. */ static final byte[] D_MAGENTA = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x35, 0x6D }; + + /** Ansi control sequence for switching to dark cyan. */ static final byte[] D_CYAN = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x36, 0x6D }; + + /** Ansi control sequence for switching to dark white. */ static final byte[] D_WHITE = { 0x1B, 0x5B, 0x30, 0x30, 0x3B, 0x33, 0x37, 0x6D }; + + /** Ansi control sequence for switching to light black. */ static final byte[] L_BLACK = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x30, 0x6D }; + + /** Ansi control sequence for switching to light red. */ static final byte[] L_RED = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x31, 0x6D }; + + /** Ansi control sequence for switching to light green. */ static final byte[] L_GREEN = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x32, 0x6D }; + + /** Ansi control sequence for switching to light yellow. */ static final byte[] L_YELLOW = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x33, 0x6D }; + + /** Ansi control sequence for switching to light blue. */ static final byte[] L_BLUE = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x34, 0x6D }; + + /** Ansi control sequence for switching to light magenta. */ static final byte[] L_MAGENTA = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x35, 0x6D }; + + /** Ansi control sequence for switching to light cyan. */ static final byte[] L_CYAN = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x36, 0x6D }; + + /** Ansi control sequence for switching to light white. */ static final byte[] L_WHITE = { 0x1B, 0x5B, 0x30, 0x31, 0x3B, 0x33, 0x37, 0x6D }; + /** Ansi control sequence for switching to normal. */ static final byte[] NORMAL = { 0x1B, 0x5B, 0x30, 0x30, 0x6D }; + /** Utility class - do not instanciate. */ private ANSI() { } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |