Package com.buschmais.jqassistant.core.analysis.api.rule

Examples of com.buschmais.jqassistant.core.analysis.api.rule.Group


   *             If an undefined group is referenced.
   */
  private List<Group> getSelectedGroups(List<String> groupNames, RuleSet ruleSet) throws RuleSetResolverException {
    final List<Group> selectedGroups = new ArrayList<>();
    for (String groupName : groupNames) {
      Group group = ruleSet.getGroups().get(groupName);
      if (group != null) {
        selectedGroups.add(group);
      } else {
        LOGGER.warn("Group '{}' is not defined, skipping.", groupName);
      }
View Full Code Here


     *             If an undefined group is referenced.
     */
    private List<Group> getSelectedGroups(List<String> groupNames, RuleSet ruleSet) throws RuleSetResolverException {
        final List<Group> selectedGroups = new ArrayList<>();
        for (String groupName : groupNames) {
            Group group = ruleSet.getGroups().get(groupName);
            if (group != null) {
                selectedGroups.add(group);
            } else {
                LOGGER.warn("Group '{}' is not defined, skipping.", groupName);
            }
View Full Code Here

TOP

Related Classes of com.buschmais.jqassistant.core.analysis.api.rule.Group

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.