gr.gousiosg.javacg.dto.ChildrenClassInfo 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/27
* @description:
*/
public class ChildrenClassInfo {
private String superClassName;
private List childrenClassNameList;
public String getSuperClassName() {
return superClassName;
}
public void setSuperClassName(String superClassName) {
this.superClassName = superClassName;
}
public List getChildrenClassNameList() {
return childrenClassNameList;
}
public void setChildrenClassNameList(List childrenClassNameList) {
this.childrenClassNameList = childrenClassNameList;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy