diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-04 09:47:57 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-04 09:48:09 +0200 |
commit | 4ae78311a95a65b71d1760d6f6ea1d646eb09220 (patch) | |
tree | a72ff1a47e936a786692ede5531150380da553b8 /sonar-check-api/src/main/java/org/sonar | |
parent | 69363f7a5f50722bc41c0216c020a0fd38c7d5e1 (diff) | |
download | sonarqube-4ae78311a95a65b71d1760d6f6ea1d646eb09220.tar.gz sonarqube-4ae78311a95a65b71d1760d6f6ea1d646eb09220.zip |
Improve doc of RuleProperty#type()
Diffstat (limited to 'sonar-check-api/src/main/java/org/sonar')
-rw-r--r-- | sonar-check-api/src/main/java/org/sonar/check/RuleProperty.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sonar-check-api/src/main/java/org/sonar/check/RuleProperty.java b/sonar-check-api/src/main/java/org/sonar/check/RuleProperty.java index 59bdeea3380..af3eccde2dc 100644 --- a/sonar-check-api/src/main/java/org/sonar/check/RuleProperty.java +++ b/sonar-check-api/src/main/java/org/sonar/check/RuleProperty.java @@ -48,9 +48,8 @@ public @interface RuleProperty { String defaultValue() default ""; /** - * Optional type. - * See {@org.sonar.api.PropertyType} for possible values. - * If <code>type</code> is ommited, it is guessed from the type of the annotated field. + * Optional type of property value. Supported values are: STRING, TEXT, PASSWORD, BOOLEAN, INTEGER, FLOAT. + * If <code>type</code> is omitted, it is guessed from the type of the annotated field. * * @since 3.2 */ |