So, I'm a Java Rookie with tough homework...
We have to build a linked list which should store Elements of a given interface (Sortable).
The interfaces to build on is:
public interface Sortable<T>
My implemementation of the list is called public class DoublyLinkedList
which stores data in nodes of the class public class DoublyLinkedListElement implements Sortable<Object>
So far so good. However there is another class public class Product implements Sortable<Produkt>.
Is it possible to use Methods of DoublyLinkedListto add objects of the type Product to a DoublyLinkedList without converting the type to DoublyLinkedListElement. If i try so I receive actual argument ha04.Product cannot be converted to ha04.DoublyLinkedListElement by method invocation conversion.