Uses of Interface
org.sonar.api.issue.Issue

Packages that use Issue
org.sonar.api.issue   
org.sonar.api.issue.action   
org.sonar.api.issue.batch   
org.sonar.api.issue.condition   
org.sonar.api.issue.internal This package contains classes that MUST NOT be used by plugins, except for unit testing. 
 

Uses of Issue in org.sonar.api.issue
 

Methods in org.sonar.api.issue that return Issue
 Issue Issuable.IssueBuilder.build()
           
 Issue IssueQueryResult.first()
          Returns the first issue in the list.
 Issue IssueHandler.Context.issue()
           
 

Methods in org.sonar.api.issue that return types with arguments of type Issue
 Iterable<Issue> ProjectIssues.issues()
          All the unresolved issues of the project, including the issues reported by end-users.
 List<Issue> IssueQueryResult.issues()
          Non-null paginated list of issues.
 List<Issue> Issuable.issues()
          Unresolved issues, including the issues reported by end-users.
 Iterable<Issue> ProjectIssues.resolvedIssues()
          All the issues of this project that have been marked as resolved during this scan
 List<Issue> Issuable.resolvedIssues()
          Issues marked as resolved during this scan.
 

Methods in org.sonar.api.issue with parameters of type Issue
 boolean IssueFilter.accept(Issue issue)
          Deprecated.  
 boolean NoSonarFilter.accept(Issue issue, IssueFilterChain chain)
           
 ActionPlan IssueQueryResult.actionPlan(Issue issue)
           
 boolean Issuable.addIssue(Issue issue)
          Register an issue created with Issuable.newIssueBuilder().
 Component IssueQueryResult.component(Issue issue)
           
 Component IssueQueryResult.project(Issue issue)
           
 Rule IssueQueryResult.rule(Issue issue)
          Returns the rule associated to the given issue.
 

Uses of Issue in org.sonar.api.issue.action
 

Methods in org.sonar.api.issue.action that return Issue
 Issue Function.Context.issue()
           
 

Methods in org.sonar.api.issue.action with parameters of type Issue
 boolean Action.supports(Issue issue)
           
 

Uses of Issue in org.sonar.api.issue.batch
 

Methods in org.sonar.api.issue.batch with parameters of type Issue
 boolean IssueFilterChain.accept(Issue issue)
          Called by a filter to let downstream filters decide the fate of the issue
 boolean IssueFilter.accept(Issue issue, IssueFilterChain chain)
          The accept method is called for each Issue created during analysis, to check if it has to be persisted.
 

Uses of Issue in org.sonar.api.issue.condition
 

Methods in org.sonar.api.issue.condition with parameters of type Issue
 boolean NotCondition.matches(Issue issue)
           
 boolean IsUnResolved.matches(Issue issue)
           
 boolean HasStatus.matches(Issue issue)
           
 boolean HasResolution.matches(Issue issue)
           
 boolean HasIssuePropertyCondition.matches(Issue issue)
           
 boolean Condition.matches(Issue issue)
           
 

Uses of Issue in org.sonar.api.issue.internal
 

Classes in org.sonar.api.issue.internal that implement Issue
 class DefaultIssue
          PLUGINS MUST NOT BE USED THIS CLASS, EXCEPT FOR UNIT TESTING.
 



Copyright © 2009-2014 SonarSource. All Rights Reserved.