All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.test.net.sf.cglib.proxy.EA Maven / Gradle / Ivy

There is a newer version: 3.9
Show newest version
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