
org.codehaus.mojo.versions.report.InputLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of versions-maven-plugin Show documentation
Show all versions of versions-maven-plugin Show documentation
Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.
package org.codehaus.mojo.versions.report;
import org.apache.maven.model.InputSource;
public class InputLocation {
private int line;
private int column;
private InputSource inputSource;
public int getColumn() {
return column;
}
public void setColumn(int column) {
this.column = column;
}
public InputSource getInputSource() {
return inputSource;
}
public void setInputSource(InputSource inputSource) {
this.inputSource = inputSource;
}
public int getLine() {
return line;
}
public void setLine(int line) {
this.line = line;
}
}