An extension of
org.apache.tapestry.ComponentResources that represents additional methods
that are private to the framework and not exposed in any public APIs. Ideally, there will not be
any need for this interface (we'll see as we go).
Returns true if the named parameter's
org.apache.tapestry.Binding is invariant, false
if otherwise, or if the parameter is not bound. Invariant bindings are cached more
aggresively than variant bindings.
Parameters: parameterName - the name of parameter to check for invariance
Reads the value of a parameter, via the parameter's
org.apache.tapestry.Binding .
< Parameters: T - > Parameters: parameterName - the name of the parameter to read Parameters: expectedType - the expected type of parameter the value for the parameter, or null if the parameter is not bound.
writeParameter
void writeParameter(String parameterName, T parameterValue)(Code)
Updates a parameter. It is an error to update a parameter which is not bound. The parameter
org.apache.tapestry.Binding binding may also not support updates.
< Parameters: T - > Parameters: parameterName - of parameter to update Parameters: parameterValue - new value (which may be null)