]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3755 add javadoc to issue API
authorSimon Brandhof <simon.brandhof@gmail.com>
Wed, 5 Jun 2013 14:46:49 +0000 (16:46 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Wed, 5 Jun 2013 14:47:00 +0000 (16:47 +0200)
sonar-plugin-api/src/main/java/org/sonar/api/issue/Issue.java

index 527fccd84bf43ab611fe9c1f1a03128cacbbb140..982ed14ff94944ffee860d3c9a18dab09c099b7f 100644 (file)
@@ -67,10 +67,17 @@ public interface Issue extends Serializable {
    */
   String key();
 
+  /**
+   * Components are modules ("my_project"), directories ("my_project:my/dir") or files ("my_project:my/file.c").
+   * Keys of Java packages and classes are currently in a special format: "my_project:com.company" and "my_project:com.company.Foo".
+   */
   String componentKey();
 
   RuleKey ruleKey();
 
+  /**
+   * See constants in {@link org.sonar.api.rule.Severity}.
+   */
   String severity();
 
   @CheckForNull