java/sql-dk/src/info/globalcode/sql/dk/configuration/PropertyDeclaration.java
branchv_0
changeset 207 2bba68ef47c1
parent 205 d6624c3b146a
child 212 d154d6012cbe
     1.1 --- a/java/sql-dk/src/info/globalcode/sql/dk/configuration/PropertyDeclaration.java	Sat Aug 15 10:20:39 2015 +0200
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/configuration/PropertyDeclaration.java	Sat Aug 15 10:34:18 2015 +0200
     1.3 @@ -24,6 +24,9 @@
     1.4  import java.lang.annotation.Target;
     1.5  
     1.6  /**
     1.7 + * Declaration of the (formatter) properties – for documentation purposes.
     1.8 + *
     1.9 + * TODO: automatically inject properties (configured, ad-hoc, default ones) to the formatters
    1.10   *
    1.11   * @author Ing. František Kučera (frantovo.cz)
    1.12   */
    1.13 @@ -46,4 +49,9 @@
    1.14  	 * @return documentation for the users
    1.15  	 */
    1.16  	String description();
    1.17 +
    1.18 +	/**
    1.19 +	 * @return default value of this property
    1.20 +	 */
    1.21 +	String defaultValue();
    1.22  }