src.test.net.sf.cglib.proxy.EA Maven / Gradle / Ivy
package net.sf.cglib.proxy;
import java.io.ObjectStreamException;
public class EA {
private Long id;
private String name;
public Long getId() {
return id;
}
public String getName() {
return name;
}
public void setId(Long id) {
this.id = id;
}
public void setName(String name) {
this.name = name;
}
protected Object writeReplace() throws ObjectStreamException {
return null;
}
protected void finalTest(){}
public int compareTo(Object obj) {
return -1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy