The difference between a class and an interface. Or a superclass.
In
if you say in the
JSP that the "type" is ActionListener you can only use the methods defined in that interface.
If you don't say "type" and just class, then you can use all the methods of the class, in the object.
Also, the same applies to class/superclass relationships. You may have a subclass X but use "type" of its superclass.
I have never needed to use the "type"...
Anyone?
[This message has been edited by Tony Alicea (edited March 05, 2001).]