Does replacing ActionForm
with ValidatorForm
below will cause any change to the existing logic?
public class EditForm extends ActionForm {
existing logic(setters(), getters(), reset(), validate() )
}
with
public class EditForm extends **ValidatorForm**{
existing logic(setters(), getters(), reset(), validate() --> **will it be affected?**
}