franta-hg@32: /** franta-hg@32: * SQL-DK franta-hg@32: * Copyright © 2013 František Kučera (frantovo.cz) franta-hg@32: * franta-hg@32: * This program is free software: you can redistribute it and/or modify franta-hg@32: * it under the terms of the GNU General Public License as published by franta-hg@32: * the Free Software Foundation, either version 3 of the License, or franta-hg@32: * (at your option) any later version. franta-hg@32: * franta-hg@32: * This program is distributed in the hope that it will be useful, franta-hg@32: * but WITHOUT ANY WARRANTY; without even the implied warranty of franta-hg@32: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the franta-hg@32: * GNU General Public License for more details. franta-hg@32: * franta-hg@32: * You should have received a copy of the GNU General Public License franta-hg@32: * along with this program. If not, see . franta-hg@32: */ franta-hg@32: package info.globalcode.sql.dk.formatting; franta-hg@32: franta-hg@32: /** franta-hg@32: * franta-hg@32: * @author Ing. František Kučera (frantovo.cz) franta-hg@32: */ franta-hg@32: public class TabularFormatter extends AbstractFormatter { franta-hg@32: franta-hg@32: public static final String NAME = "tabular"; franta-hg@32: franta-hg@32: public TabularFormatter(FormatterContext formatterContext) { franta-hg@32: super(formatterContext); franta-hg@32: } franta-hg@32: }