Esempio n. 1
0
 /**
  * Restore state of children from local variable. Both with <code>saveChildrenState()</code> need
  * to perform correct children JSF life-cycle processing.
  */
 private void restoreChildrenState() {
   if (this.getChildCount() > 0) {
     Object childrenState = childrenStates.get(getIndex());
     if (childrenState == null) childrenState = childrenOriginalState;
     OUIData.restoreDescendantComponentStates(this.getChildren().iterator(), childrenState, true);
   }
 }