de.jformchecker.utils.FormCheckerBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jformchecker-integration Show documentation
Show all versions of jformchecker-integration Show documentation
jFormchecker integration utils that connects it to frameworks/APIs
package de.jformchecker.utils;
import de.jformchecker.FormCheckerForm;
/**
* Interface, that helps beans to be transformed to/from a FormcheckerForm
* @author jochen
*
*/
public interface FormCheckerBean {
public void preRun(FormCheckerForm form) ;
public void postRun(FormCheckerForm form);
}