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

io.codemodder.sonar.model.Flow Maven / Gradle / Ivy

package io.codemodder.sonar.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

public final class Flow {
  @JsonProperty("locations")
  private List locations;

  public List getLocations() {
    return locations;
  }

  public void setLocations(List locations) {
    this.locations = locations;
  }

  public static class Location {
    @JsonProperty("component")
    private String component;

    @JsonProperty("textRange")
    private TextRange textRange;

    @JsonProperty("msg")
    private String msg;

    public String getComponent() {
      return component;
    }

    public void setComponent(String component) {
      this.component = component;
    }

    public TextRange getTextRange() {
      return textRange;
    }

    public void setTextRange(TextRange textRange) {
      this.textRange = textRange;
    }

    public String getMsg() {
      return msg;
    }

    public void setMsg(String msg) {
      this.msg = msg;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy