java/sql-dk/src/info/globalcode/sql/dk/formatting/SingleValueFormatter.java
branchv_0
changeset 79 e19a13ed19a9
parent 60 d4e88172a363
child 142 da1e38386d84
equal deleted inserted replaced
78:d98f33d91553 79:e19a13ed19a9
    26  *
    26  *
    27  * @author Ing. František Kučera (frantovo.cz)
    27  * @author Ing. František Kučera (frantovo.cz)
    28  */
    28  */
    29 public class SingleValueFormatter extends AbstractFormatter {
    29 public class SingleValueFormatter extends AbstractFormatter {
    30 
    30 
    31 	public static final String NAME = "single";
    31 	public static final String NAME = "single"; // bash-completion:formatter
    32 	private PrintWriter out;
    32 	private PrintWriter out;
    33 
    33 
    34 	public SingleValueFormatter(FormatterContext formatterContext) {
    34 	public SingleValueFormatter(FormatterContext formatterContext) {
    35 		super(formatterContext);
    35 		super(formatterContext);
    36 		this.out = new PrintWriter(formatterContext.getOutputStream());
    36 		this.out = new PrintWriter(formatterContext.getOutputStream());