Interface InternalFormSupport
-
- All Superinterfaces:
ClientElement
,FormSupport
- All Known Implementing Classes:
FormSupportImpl
public interface InternalFormSupport extends FormSupport
Additional methods forFormSupport
used internally by Tapestry.- See Also:
Form
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
executeDeferred()
Executes any deferred callbacks added viaFormSupport.defer(Runnable)
.java.lang.String
getEncodingType()
Returns the form encoding type, if one has been set via a call toFormSupport.setEncodingType(String)
.-
Methods inherited from interface org.apache.tapestry5.ClientElement
getClientId
-
Methods inherited from interface org.apache.tapestry5.services.FormSupport
addValidation, allocateControlName, defer, getFormComponentId, getFormValidationId, isClientValidationEnabled, setEncodingType, store, storeAndExecute, storeCancel
-
-
-
-
Method Detail
-
executeDeferred
void executeDeferred()
Executes any deferred callbacks added viaFormSupport.defer(Runnable)
.
-
getEncodingType
java.lang.String getEncodingType()
Returns the form encoding type, if one has been set via a call toFormSupport.setEncodingType(String)
.
-
-