java/sql-dk/src/info/globalcode/sql/dk/formatting/TeXFormatter.java
branchv_0
changeset 207 2bba68ef47c1
parent 206 e2f24eea8543
equal deleted inserted replaced
206:e2f24eea8543 207:2bba68ef47c1
    30 /**
    30 /**
    31  * Outputs result sets in (La)TeX format.
    31  * Outputs result sets in (La)TeX format.
    32  *
    32  *
    33  * @author Ing. František Kučera (frantovo.cz)
    33  * @author Ing. František Kučera (frantovo.cz)
    34  */
    34  */
    35 @PropertyDeclaration(name = COLORFUL, type = Boolean.class, description = COLORFUL_DESCRIPTION)
    35 @PropertyDeclaration(name = COLORFUL, defaultValue = "false", type = Boolean.class, description = COLORFUL_DESCRIPTION)
    36 public class TeXFormatter extends AbstractFormatter {
    36 public class TeXFormatter extends AbstractFormatter {
    37 
    37 
    38 	public static final String NAME = "tex"; // bash-completion:formatter
    38 	public static final String NAME = "tex"; // bash-completion:formatter
    39 	private static final ColorfulPrintWriter.TerminalColor COMMAND_COLOR = ColorfulPrintWriter.TerminalColor.Magenta;
    39 	private static final ColorfulPrintWriter.TerminalColor COMMAND_COLOR = ColorfulPrintWriter.TerminalColor.Magenta;
    40 	private static final ColorfulPrintWriter.TerminalColor OPTIONS_COLOR = ColorfulPrintWriter.TerminalColor.Yellow;
    40 	private static final ColorfulPrintWriter.TerminalColor OPTIONS_COLOR = ColorfulPrintWriter.TerminalColor.Yellow;