From: Simon Brandhof Date: Fri, 4 Oct 2013 07:47:57 +0000 (+0200) Subject: Improve doc of RuleProperty#type() X-Git-Tag: 4.0~238 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4ae78311a95a65b71d1760d6f6ea1d646eb09220;p=sonarqube.git Improve doc of RuleProperty#type() --- 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 type 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 type is omitted, it is guessed from the type of the annotated field. * * @since 3.2 */