1 16 package javax.faces.component; 17 18 import java.io.Serializable ; 19 import java.util.List ; 20 21 25 class _AttachedListStateWrapper 26 implements Serializable  27 { 28 private List _wrappedStateList; 29 30 public _AttachedListStateWrapper(List wrappedStateList) 31 { 32 _wrappedStateList = wrappedStateList; 33 } 34 35 public List getWrappedStateList() 36 { 37 return _wrappedStateList; 38 } 39 } 40 | Popular Tags |