Show AbstractRoot.java syntax highlighted
package persister;
import java.io.Serializable;
/**
* @author webers
*
* DO NOT IMPLEMENT THIS INTERFACE!
*
* FOR INTERNAL USE ONLY
*
*/
public interface AbstractRoot extends Serializable {
public long getId();
public String getName();
public void setId(long id);
public void setName(String name);
}
See more files for this project here