I have some questions for using the Eclipse Java IDE.
The classes Link
, LList
and the interface List
are in the default package:
I want to use Link<E>
in class LList<E>
. Can I just use it like in the picture without importing the class or creating a package?
Can I also implement the interface without importing the interface or creating a package?
How is this possible?