Class ValueExpressionValueBindingAdapter
- All Implemented Interfaces:
StateHolder,Serializable
public class ValueExpressionValueBindingAdapter extends jakarta.el.ValueExpression implements Serializable, StateHolder
Wrap a ValueBinding instance and expose it as a ValueExpression.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description ValueExpressionValueBindingAdapter()ValueExpressionValueBindingAdapter(ValueBinding binding) -
Method Summary
Modifier and Type Method Description booleanequals(Object other)StringgetDelimiterSyntax()Class<?>getExpectedType()StringgetExpressionString()Class<?>getType(jakarta.el.ELContext context)ObjectgetValue(jakarta.el.ELContext context)ValueBindinggetWrapped()inthashCode()booleanisLiteralText()Always returnfalsesince we can't possibly know if this is a literal text binding or not.booleanisReadOnly(jakarta.el.ELContext context)booleanisTransient()If true, the Object implementing this interface must not participate in state saving or restoring.voidrestoreState(FacesContext context, Object state)Perform any processing required to restore the state from the entries in the state Object.ObjectsaveState(FacesContext context)Gets the state of the instance as aSerializableObject.voidsetTransient(boolean newTransientValue)Denotes whether or not the Object implementing this interface must or must not participate in state saving or restoring.voidsetValue(jakarta.el.ELContext context, Object value)
-
Constructor Details
-
ValueExpressionValueBindingAdapter
public ValueExpressionValueBindingAdapter() -
ValueExpressionValueBindingAdapter
-
-
Method Details
-
getValue
- Specified by:
getValuein classjakarta.el.ValueExpression- Throws:
jakarta.el.ELException
-
setValue
- Specified by:
setValuein classjakarta.el.ValueExpression- Throws:
jakarta.el.ELException
-
isReadOnly
public boolean isReadOnly(jakarta.el.ELContext context) throws jakarta.el.ELException- Specified by:
isReadOnlyin classjakarta.el.ValueExpression- Throws:
jakarta.el.ELException
-
getType
- Specified by:
getTypein classjakarta.el.ValueExpression- Throws:
jakarta.el.ELException
-
isLiteralText
public boolean isLiteralText()Always return
falsesince we can't possibly know if this is a literal text binding or not.- Specified by:
isLiteralTextin classjakarta.el.Expression
-
getExpectedType
- Specified by:
getExpectedTypein classjakarta.el.ValueExpression
-
getExpressionString
- Specified by:
getExpressionStringin classjakarta.el.Expression
-
equals
- Specified by:
equalsin classjakarta.el.Expression
-
hashCode
public int hashCode()- Specified by:
hashCodein classjakarta.el.Expression
-
getDelimiterSyntax
-
saveState
Description copied from interface:StateHolderGets the state of the instance as a
SerializableObject.If the class that implements this interface has references to instances that implement StateHolder (such as a
UIComponentwith event handlers, validators, etc.) this method must call theStateHolder.saveState(jakarta.faces.context.FacesContext)method on all those instances as well. This method must not save the state of children and facets. That is done via theStateManagerThis method must not alter the state of the implementing object. In other words, after executing this code:
Object state = component.saveState(facesContext);componentshould be the same as before executing it.The return from this method must be
Serializable- Specified by:
saveStatein interfaceStateHolder- Parameters:
context- the Faces context.- Returns:
- the saved state.
-
restoreState
Description copied from interface:StateHolderPerform any processing required to restore the state from the entries in the state Object.
If the class that implements this interface has references to instances that also implement StateHolder (such as a
UIComponentwith event handlers, validators, etc.) this method must call theStateHolder.restoreState(jakarta.faces.context.FacesContext, java.lang.Object)method on all those instances as well.If the
stateargument isnull, take no action and return.- Specified by:
restoreStatein interfaceStateHolder- Parameters:
context- the Faces context.state- the state.
-
isTransient
public boolean isTransient()Description copied from interface:StateHolderIf true, the Object implementing this interface must not participate in state saving or restoring.
- Specified by:
isTransientin interfaceStateHolder- Returns:
trueif transient,falseotherwise.
-
setTransient
public void setTransient(boolean newTransientValue)Description copied from interface:StateHolderDenotes whether or not the Object implementing this interface must or must not participate in state saving or restoring.
- Specified by:
setTransientin interfaceStateHolder- Parameters:
newTransientValue- boolean passtrueif this Object will not participate in state saving or restoring, otherwise passfalse.
-
getWrapped
-