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

com.github.artyomcool.retrace.Line Maven / Gradle / Ivy

The newest version!
package com.github.artyomcool.retrace;

public class Line {

    private String className;
    private String fileName;
    private String methodName;
    private Integer lineNumber;

    public String getClassName() {
        return className;
    }

    public void setClassName(String className) {
        this.className = className;
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    public String getMethodName() {
        return methodName;
    }

    public void setMethodName(String methodName) {
        this.methodName = methodName;
    }

    public Integer getLineNumber() {
        return lineNumber;
    }

    public void setLineNumber(Integer lineNumber) {
        this.lineNumber = lineNumber;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy