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

org.codehaus.mojo.versions.report.InputLocation Maven / Gradle / Ivy

Go to download

Versions Plugin for Maven 2. The Versions Plugin updates the versions of components in the POM.

There is a newer version: 2.1.4
Show newest version
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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy