diff options
Diffstat (limited to 'sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetProperty.java')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetProperty.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetProperty.java b/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetProperty.java index f547a7d5fa3..5003381681e 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetProperty.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/web/WidgetProperty.java @@ -39,7 +39,7 @@ public @interface WidgetProperty { boolean optional() default true; /** - * @since 3.3 Options for property of type WidgetPropertyType.METRIC</code>. + * @since 3.3 Options for property of type {@link WidgetPropertyType#METRIC}. * * If no option is specified, any metric will match. * If options are specified, all must match for the metric to be displayed. @@ -48,7 +48,7 @@ public @interface WidgetProperty { * For example <code>type:INT,FLOAT</code> will match any metric of type <code>INT</code> or <code>FLOAT</code>. * For example <code>type:NUMERIC</code> will match any metric of numerictype. * - * @since 3.5 Options for property of type WidgetPropertyType.SINGLE_SELECT_LIST</code> + * @since 3.5 Options for property of type {@link WidgetPropertyType#SINGLE_SELECT_LIST}. * For example {"property_1", "property_3", "property_3"}). * */ |