gr.gousiosg.javacg.dto.ExtendsClassMethodInfo 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.Map;
/**
* @author adrninistrator
* @date 2021/6/25
* @description:
*/
public class ExtendsClassMethodInfo {
private boolean abstractClass;
private String superClassName;
private Map methodAttributeMap;
public boolean isAbstractClass() {
return abstractClass;
}
public void setAbstractClass(boolean abstractClass) {
this.abstractClass = abstractClass;
}
public String getSuperClassName() {
return superClassName;
}
public void setSuperClassName(String superClassName) {
this.superClassName = superClassName;
}
public Map getMethodAttributeMap() {
return methodAttributeMap;
}
public void setMethodAttributeMap(Map methodAttributeMap) {
this.methodAttributeMap = methodAttributeMap;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy