Package org.zkoss.bind
Interface FormStatus
-
public interface FormStatus
Represents 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.Object
getOrigin()
Returns the origin object of the form objectboolean
isDirty()
Returns whether the form has been modifiedvoid
reset()
Resets the modified data.void
submit(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
-
-