What is super class of Action and ActionForm?

India
April 29, 2007 9:10pm CST
Object is the super class for Action and ActionForm. Action is a class and ActionForm is an abstract class. anymore explanation?
1 response
@mr_mlk (364)
23 Jun 07
The APIs will tell you the superclass. Action is a interface: [ http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/Action.html ], and does not extend anything. All Java Objects ultimately come from java.lang.Object. No class “ActionForm” exists in the Java API, as such you will need to look at your API documentation.