gr.gousiosg.javacg.dto.ClassInterfaceMethodInfo 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;
import java.util.List;
/**
* @author adrninistrator
* @date 2021/6/21
* @description:
*/
public class ClassInterfaceMethodInfo {
private List interfaceNameList;
private List methodWithArgsList;
public List getInterfaceNameList() {
return interfaceNameList;
}
public void setInterfaceNameList(List interfaceNameList) {
this.interfaceNameList = interfaceNameList;
}
public List getMethodWithArgsList() {
return methodWithArgsList;
}
public void setMethodWithArgsList(List methodWithArgsList) {
this.methodWithArgsList = methodWithArgsList;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy