]> source.dussan.org Git - sonarqube.git/commitdiff
Add a javadoc to org.sonar.api.Property#defaultValue()
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 23 May 2012 07:47:40 +0000 (09:47 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 23 May 2012 09:31:41 +0000 (11:31 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/Property.java

index 9348402227df33a0c06d38014226e31a44af8f6d..7cff4f9b49f449c348eb3253d17dba4532e1ab7b 100644 (file)
@@ -51,6 +51,9 @@ public @interface Property {
    */
   String key();
 
+  /**
+   * The empty string "" is considered as null, so it's not possible to have empty strings for default values.
+   */
   String defaultValue() default "";
 
   String name();