diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-10-02 23:09:52 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-10-02 23:09:52 +0200 |
commit | ee925d0a8d31556a37f98b6738e6f767b489e288 (patch) | |
tree | 28b2f547b2e8c55fcc469b051e0498979f39dcaa /sonar-plugin-api/src/main/java/org/sonar/api/Plugin.java | |
parent | 1b8bc4096ef135efe3bd303d4029536e825d37c8 (diff) | |
download | sonarqube-ee925d0a8d31556a37f98b6738e6f767b489e288.tar.gz sonarqube-ee925d0a8d31556a37f98b6738e6f767b489e288.zip |
Code clean-up
* mark JFreechart as deprecated
* complete some javadoc
Diffstat (limited to 'sonar-plugin-api/src/main/java/org/sonar/api/Plugin.java')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/Plugin.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/Plugin.java b/sonar-plugin-api/src/main/java/org/sonar/api/Plugin.java index c0c1340b387..ea7bbc755e9 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/Plugin.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/Plugin.java @@ -22,10 +22,11 @@ package org.sonar.api; import java.util.List; /** - * A plugin is a group of extensions. See <code>org.sonar.api.Extension</code> interface to get all extension points. + * A plugin is a group of extensions. See <code>org.sonar.api.Extension</code> interface to browse + * available extension points. * <p/> * <p>The manifest property <code>Plugin-Class</code> must declare the name of the implementation class. - * See META-INF/MANIFEST.MF.</p> + * It is automatically set by sonar-packaging-maven-plugin when building plugins.</p> * * @see org.sonar.api.Extension * @since 1.10 |