aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-check-api/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-check-api/src/main/java')
-rw-r--r--sonar-check-api/src/main/java/org/sonar/check/RuleProperty.java5
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
*/