arp.enhance.ClassParseResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARP Show documentation
Show all versions of ARP Show documentation
a java development framework with aggregation, repository and process
The newest version!
package arp.enhance;
import java.util.List;
public class ClassParseResult {
private List processInfoList;
public List getProcessInfoList() {
return processInfoList;
}
public void setProcessInfoList(List processInfoList) {
this.processInfoList = processInfoList;
}
}