Class ComponentStruct
- java.lang.Object
-
- com.sun.faces.util.ComponentStruct
-
- All Implemented Interfaces:
StateHolder
public class ComponentStruct extends Object implements StateHolder
Utility class to enable partial state saving of components that have been dynamically added to the view.
-
-
Constructor Summary
Constructors Constructor Description ComponentStruct()ComponentStruct(String action, String facetName, String clientId, String id)ComponentStruct(String action, String facetName, String parentClientId, String clientId, String id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetAction()StringgetClientId()StringgetFacetName()StringgetId()StringgetParentClientId()inthashCode()Hash code.booleanisTransient()If true, the Object implementing this interface must not participate in state saving or restoring.voidrestoreState(FacesContext ctx, Object state)Perform any processing required to restore the state from the entries in the state Object.ObjectsaveState(FacesContext ctx)Gets the state of the instance as aSerializableObject.voidsetTransient(boolean trans)Denotes whether or not the Object implementing this interface must or must not participate in state saving or restoring.
-
-
-
Field Detail
-
ADD
public static final String ADD
Marker that specifies this is an ADD.- See Also:
- Constant Field Values
-
REMOVE
public static final String REMOVE
Marker that specifies this is a REMOVE.- See Also:
- Constant Field Values
-
-
Method Detail
-
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.
-
restoreState
public void restoreState(FacesContext ctx, Object state)
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:
ctx- the Faces context.state- the state.
-
saveState
public Object saveState(FacesContext ctx)
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:
ctx- the Faces context.- Returns:
- the saved state.
-
setTransient
public void setTransient(boolean trans)
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:
trans- boolean passtrueif this Object will not participate in state saving or restoring, otherwise passfalse.
-
hashCode
public int hashCode()
Hash code.
-
getAction
public String getAction()
-
getFacetName
public String getFacetName()
-
getParentClientId
public String getParentClientId()
-
getClientId
public String getClientId()
-
getId
public String getId()
-
-