gr.gousiosg.javacg.dto.MethodCallDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-callgraph Show documentation
Show all versions of java-callgraph Show documentation
Programs for producing static call graphs for Java programs
The newest version!
package gr.gousiosg.javacg.dto;
/**
* @author adrninistrator
* @date 2021/7/26
* @description:
*/
public class MethodCallDto {
private String methodCall;
private int sourceLine;
public static MethodCallDto genInstance(String methodCall, int sourceLine) {
MethodCallDto methodCallDto = new MethodCallDto();
methodCallDto.setMethodCall(methodCall);
methodCallDto.setSourceLine(sourceLine);
return methodCallDto;
}
//
public String getMethodCall() {
return methodCall;
}
public void setMethodCall(String methodCall) {
this.methodCall = methodCall;
}
public int getSourceLine() {
return sourceLine;
}
public void setSourceLine(int sourceLine) {
this.sourceLine = sourceLine;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy