1 package net.sf.cglib.proxy; 2 3 import java.io.ObjectStreamException; 4 5 public class EA { 6 private Long id; 7 private String name; 8 9 public Long getId() { 10 return id; 11 } 12 13 public String getName() { 14 return name; 15 } 16 17 public void setId(Long id) { 18 this.id = id; 19 } 20 21 public void setName(String name) { 22 this.name = name; 23 } 24 25 protected Object writeReplace() throws ObjectStreamException { 26 return null; 27 } 28 29 protected void finalTest(){} 30 31 public int compareTo(Object obj) { 32 return -1; 33 } 34 35 } 36

This page was automatically generated by Maven