![JAR search and dependency download from the Maven repository](/logo.png)
arp.enhance.ResolvedClass 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.Map;
public class ResolvedClass {
private String name;
private Map processInfos;
private byte[] classBytes;
public ResolvedClass(String name, Map processInfos,
byte[] classBytes) {
this.name = name;
this.processInfos = processInfos;
this.classBytes = classBytes;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Map getProcessInfos() {
return processInfos;
}
public void setProcessInfos(Map processInfos) {
this.processInfos = processInfos;
}
public byte[] getClassBytes() {
return classBytes;
}
public void setClassBytes(byte[] classBytes) {
this.classBytes = classBytes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy