Uses of Class
org.sonar.api.workflow.condition.Condition

Packages that use Condition
org.sonar.api.workflow   
org.sonar.api.workflow.condition   
org.sonar.api.workflow.internal This package is not considered as API and future versions can break backward-compatibility. 
 

Uses of Condition in org.sonar.api.workflow
 

Methods in org.sonar.api.workflow that return types with arguments of type Condition
 List<Condition> Workflow.getConditions(String commandKey)
           
 

Methods in org.sonar.api.workflow with parameters of type Condition
 Workflow Workflow.addCondition(String commandKey, Condition condition)
           
 

Uses of Condition in org.sonar.api.workflow.condition
 

Subclasses of Condition in org.sonar.api.workflow.condition
 class AdminRoleCondition
          Checks that user has admin rights on project.
 class HasProjectPropertyCondition
          Checks that a project property is set, whatever its value.
 class HasReviewPropertyCondition
           
 class NotCondition
           
 class ProjectPropertyCondition
           
 class ResolutionCondition
           
 class StatusCondition
           
 

Methods in org.sonar.api.workflow.condition that return Condition
static Condition Conditions.hasAdminRole()
           
static Condition Conditions.hasProjectProperty(String propertyKey)
           
static Condition Conditions.hasReviewProperty(String propertyKey)
           
static Condition Conditions.not(Condition c)
           
static Condition Conditions.resolutions(String... resolutions)
           
static Condition Conditions.statuses(String... statuses)
           
 

Methods in org.sonar.api.workflow.condition with parameters of type Condition
static Condition Conditions.not(Condition c)
           
 

Constructors in org.sonar.api.workflow.condition with parameters of type Condition
NotCondition(Condition c)
           
 

Uses of Condition in org.sonar.api.workflow.internal
 

Methods in org.sonar.api.workflow.internal that return types with arguments of type Condition
 List<Condition> DefaultWorkflow.getConditions(String commandKey)
          Shortcut for: getReviewConditions(commandKey) + getContextConditions(commandKey)
 List<Condition> DefaultWorkflow.getContextConditions(String commandKey)
           
 List<Condition> DefaultWorkflow.getReviewConditions(String commandKey)
           
 

Methods in org.sonar.api.workflow.internal with parameters of type Condition
 Workflow DefaultWorkflow.addCondition(String commandKey, Condition condition)
           
 



Copyright © 2009-2012 SonarSource. All Rights Reserved.