com.github.artyomcool.retrace.Line Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retrace Show documentation
Show all versions of retrace Show documentation
Utility for deobfuscating java stacktraces
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;
}
}