org.whitesource.agent.api.model.Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wss-agent-api Show documentation
Show all versions of wss-agent-api Show documentation
Java bindings for White Source API
package org.whitesource.agent.api.model;
import java.util.List;
public class Code {
private List lines;
public List getLines() {
return lines;
}
public void setLines(List lines) {
this.lines = lines;
}
}