Package org.zkoss.bind
Interface FormStatus
-
public interface FormStatusRepresents the runtime information of theForm- Since:
- 6.0.0
- Author:
- dennis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetOrigin()Returns the origin object of the form objectbooleanisDirty()Returns whether the form has been modifiedvoidreset()Resets the modified data.voidsubmit(BindContext ctx)Submits the modified date to the origin object.
-
-
-
Method Detail
-
isDirty
boolean isDirty()
Returns whether the form has been modified- Returns:
- whether the form has been modified.
-
reset
void reset()
Resets the modified data.- Since:
- 8.0.0
-
submit
void submit(BindContext ctx)
Submits the modified date to the origin object.- Since:
- 8.0.0
-
getOrigin
java.lang.Object getOrigin()
Returns the origin object of the form object- Since:
- 8.0.0
-
-