All Downloads are FREE. Search and download functionalities are using the official Maven repository.

se.bjurr.violations.comments.lib.ViolationComments Maven / Gradle / Ivy

There is a newer version: 1.109.0
Show newest version
package se.bjurr.violations.comments.lib;

import java.util.List;
import se.bjurr.violations.comments.lib.model.Comment;
import se.bjurr.violations.lib.model.Violation;

public class ViolationComments {
  private final List comments;
  private final List violations;

  public ViolationComments(List comments, List violations) {
    this.comments = comments;
    this.violations = violations;
  }

  public List getComments() {
    return comments;
  }

  public List getViolations() {
    return violations;
  }

  @Override
  public String toString() {
    return "ViolationComments [comments=" + comments + ", violations=" + violations + "]";
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy