596597598599600601602603604605606
new Object[]{ currentClientId, null, i, internalBuildTreeStructureToSave(child), child.processSaveState(context)})); } else { saveStateOnMap( context, states, child); }
639640641642643644645646647648649
states.put(child.getClientId(),new AttachedFullStateWrapper(new Object[]{ currentClientId, facetName, null, internalBuildTreeStructureToSave(child), child.processSaveState(context)})); } else { saveStateOnMap( context, states, child); }
196197198199200201202203204205206
if (facetMap == null) facetMap = new HashMap(); UIComponent component = (UIComponent) entry.getValue(); if (!component.isTransient()) { facetMap.put(entry.getKey(), component.processSaveState(context)); } } List childrenList = null; if (getChildCount() > 0) {
209210211212213214215216217218219
UIComponent child = (UIComponent) it.next(); if (!child.isTransient()) { if (childrenList == null) childrenList = new ArrayList(getChildCount()); childrenList.add(child.processSaveState(context)); } } } removeAlias(context);
127128129130131132133134135136137
if (facetMap == null) facetMap = new HashMap(); UIComponent component = (UIComponent) entry.getValue(); if (!component.isTransient()) { facetMap.put(entry.getKey(), component.processSaveState(context)); } } List childrenList = null; if (getChildCount() > 0)
141142143144145146147148149150151
UIComponent child = (UIComponent) it.next(); if (!child.isTransient()) { if (childrenList == null) childrenList = new ArrayList(getChildCount()); childrenList.add(child.processSaveState(context)); } } } removeAliases(context);
179180181182183184185186187188189
for (int i = 0; i < childCount; i++) { UIComponent child = (UIComponent) children.get(i); if (!child.isTransient()) { Object childState = child.processSaveState(context); if (childState != null) { _empty = false; _children[j] = childState; }
219220221222223224225226227228229
// Just skip over transient facets if (facet.isTransient()) continue; Object facetState = facet.processSaveState(context); if (facetState != null) { _empty = false; _facets[2 * i] = entry.getKey(); _facets[2 * i + 1] = facetState;
805806807808809810811812813814815
853854855856857858859860861862863