java/sql-dk/src/info/globalcode/sql/dk/configuration/Configuration.java
branchv_0
changeset 60 d4e88172a363
parent 32 5e412dbd9362
child 67 10c9b9e54622
     1.1 --- a/java/sql-dk/src/info/globalcode/sql/dk/configuration/Configuration.java	Wed Dec 25 02:04:57 2013 +0100
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/configuration/Configuration.java	Wed Dec 25 16:38:05 2013 +0100
     1.3 @@ -20,6 +20,7 @@
     1.4  import static info.globalcode.sql.dk.Xmlns.CONFIGURATION;
     1.5  import static info.globalcode.sql.dk.Functions.findByName;
     1.6  import info.globalcode.sql.dk.formatting.SilentFormatter;
     1.7 +import info.globalcode.sql.dk.formatting.SingleValueFormatter;
     1.8  import info.globalcode.sql.dk.formatting.TabularFormatter;
     1.9  import info.globalcode.sql.dk.formatting.XmlFormatter;
    1.10  import java.util.ArrayList;
    1.11 @@ -51,6 +52,7 @@
    1.12  	static {
    1.13  		Collection<FormatterDefinition> l = new ArrayList<>();
    1.14  		l.add(new FormatterDefinition(SilentFormatter.NAME, SilentFormatter.class.getName()));
    1.15 +		l.add(new FormatterDefinition(SingleValueFormatter.NAME, SingleValueFormatter.class.getName()));
    1.16  		l.add(new FormatterDefinition(XmlFormatter.NAME, XmlFormatter.class.getName()));
    1.17  		l.add(new FormatterDefinition(TabularFormatter.NAME, TabularFormatter.class.getName()));
    1.18  		buildInFormatters = Collections.unmodifiableCollection(l);