Package org.sonar.server.qualityprofile

Examples of org.sonar.server.qualityprofile.ActiveRuleChange


      // startCase
      ChangeLog change = changeLogIterator.next();
      int currentId = change.getId();
      Date currentTimeStamp = change.getCreatedAt();
      String currentAuthor = change.getUserLogin();
      ActiveRuleChange ruleChange = newActiveRuleChance(type, change);
      processRuleChange(ruleChange, change);

      while (changeLogIterator.hasNext()) {
        change = changeLogIterator.next();
        int id = change.getId();
View Full Code Here

TOP

Related Classes of org.sonar.server.qualityprofile.ActiveRuleChange

Copyright © 2018 www.massapicom. 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.