
net.optionfactory.csv.parser.Source Maven / Gradle / Ivy
The newest version!
package net.optionfactory.csv.parser;
public class Source {
public static Source of(int beginLine, int beginColumn, int endLine, int endColumn) {
Source s = new Source();
s.beginLine = beginLine;
s.beginColumn = beginColumn;
s.endLine = endLine;
s.endColumn = endColumn;
return s;
}
public int beginLine;
public int endLine;
public int beginColumn;
public int endColumn;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy