I have a number some classes that user java generics and everything was working fine until I added some additional layers to the class hierarchy.
I am wondering if the problem is related to "type erasure" but I am not sure how to express the inheritance to eliminate this.
Class definitions:
public interface IBaseDAO <T, PK extends Serializable>;
public interface IEntityDAO<T extends BaseEntity> extends IBaseDAO<T, Integer>;
public interface IBaseFileDAO<T extends File> extends IEntityDAO<T>;
public interface IInvoiceDAO extends IBaseFileDAO<Invoice>;
public class BaseDAO<T, PK extends Serializable> implements IBaseDAO<T, PK>;
public abstract class EntityDAO<T extends BaseEntity> extends BaseDAO<T, Integer> implements IEntityDAO<T>;
public abstract class BaseFileDAO<T extends File> extends EntityDAO<T> implements IBaseFileDAO<T>;
public class InvoiceDAO extends BaseFileDAO<Invoice> implements IInvoiceDAO;
public abstract class BaseEntity implements Serializable;
public class File extends BaseEntity;
public abstract class Transaction extends File;
public class Request extends Transaction;
public class Invoice extends Request;
The errors are:
Bound mismatch: The type Invoice is not a valid substitute for the bounded parameter <T extends File> of the type BaseFileDAO<T>
Bound mismatch: The type Invoice is not a valid substitute for the bounded parameter <T extends File> of the type IBaseFileDAO<T>
I am a bit out of my depth here, can anyone give me some advice on how to express the Invoice class to eliminate the error?
EDIT:
Not sure if this helps but I also have:
public class FileDAO extends BaseFileDAO<File> implements IFileDAO;
public interface IFileDAO extends IBaseFileDAO<File>;
java.io.File? – Jim Garrison Nov 11 '11 at 21:36IEntityDAO<T extends File>andEntityDAO<T extends File>– gigadot Nov 11 '11 at 21:37