public class RegisterForm extends ActionForm
{
}
I have this in my execute method of the Action class :
Registerform rf = (RegisterForm) form; // what exactly is happening here ?
RegisterForm is not an abstract class then , why can we not create an instance of Registerform ? Also I read "The base ActionForm class cannot be instantiated". Is it because the ActionForm class is mentioned as abstract in the api docs :
public abstract class ActionForm extends Object implements Serializable
Is the ActionForm a javabean ?? If yes what are the rules/specifcation for a javabean ? Are there any datatype an ActionForm can/cannot take. Few rules for a class to be a
java bean are :
1. must have getters and setters
2. must implement Serializable.
3.... ?
4.... ?