]> source.dussan.org Git - sonarqube.git/commitdiff
Improve javadoc
authorJulien HENRY <julien.henry@sonarsource.com>
Mon, 11 Apr 2016 09:00:05 +0000 (11:00 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Mon, 11 Apr 2016 09:00:52 +0000 (11:00 +0200)
Make some annotations visible on annotated type in Javadoc

sonar-plugin-api/src/main/java/org/sonar/api/ExtensionPoint.java
sonar-plugin-api/src/main/java/org/sonar/api/batch/BatchSide.java
sonar-plugin-api/src/main/java/org/sonar/api/ce/ComputeEngineSide.java
sonar-plugin-api/src/main/java/org/sonar/api/server/ServerSide.java

index e7a9cf048c5e032d1967b600587cae2db859c5f1..943a06f0769485694f7e961799239249f5f83f05 100644 (file)
@@ -19,6 +19,7 @@
  */
 package org.sonar.api;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -30,6 +31,7 @@ import java.lang.annotation.Target;
  *
  * @since 5.2
  */
+@Documented
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.TYPE)
 public @interface ExtensionPoint {
index f829ea425f692b93e36022a652ea44a9fd807123..cb5f1070bd55b1a3fbea162ad2563841233aad6c 100644 (file)
@@ -19,6 +19,7 @@
  */
 package org.sonar.api.batch;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -44,6 +45,7 @@ import java.lang.annotation.Target;
  *
  * @since 5.2
  */
+@Documented
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.TYPE)
 public @interface BatchSide {
index 9db92b2d0d1c418fab1405557041d9277b01eaac..bf52b77f37c44958a8e45e0a4d1daafe9e597187 100644 (file)
@@ -20,6 +20,7 @@
 package org.sonar.api.ce;
 
 import com.google.common.annotations.Beta;
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -31,6 +32,7 @@ import org.sonar.api.batch.BatchSide;
  *
  * @since 5.5
  */
+@Documented
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.TYPE)
 @Beta
index d51b211d920c6dd9ae8e966928ff701ffe98a442..3ff2a0e4610a97285a959cfa6025ae39707cfdac 100644 (file)
@@ -19,6 +19,7 @@
  */
 package org.sonar.api.server;
 
+import java.lang.annotation.Documented;
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
@@ -30,6 +31,7 @@ import org.sonar.api.batch.BatchSide;
  *
  * @since 5.2
  */
+@Documented
 @Retention(RetentionPolicy.RUNTIME)
 @Target(ElementType.TYPE)
 public @interface ServerSide {