Package org.sonar.api.batch.sensor.issue.Issue

Examples of org.sonar.api.batch.sensor.issue.Issue.Severity.ordinal()


    value.put(issue.ruleKey().rule());
    Severity overridenSeverity = issue.overridenSeverity();
    if (overridenSeverity == null) {
      value.putNull();
    } else {
      value.put(overridenSeverity.ordinal());
    }
  }

  @Override
  public Object get(Value value, Class clazz, CoderContext context) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.