171172173174175176177178179
return map.values(); } public void markInitialState() { PropertyMap map = getPropertyMap(false); if (map != null) map.markInitialState(); }
178179180181182183184185186187
map.markInitialState(); } public Object saveState(FacesContext context) { PropertyMap map = getPropertyMap(false); if (map != null) return map.saveState(context); return null; }
208209210211212213214215216217218
} protected PropertyMap getPropertyMap( boolean createIfNull) { PropertyMap map = _map; if (map == null && createIfNull) { map = _map = createMap(); }
169170171172173174175176177
176177178179180181182183184
map.markInitialState(); } public void clearInitialState() { PropertyMap map = getPropertyMap(false); if (map != null) map.clearInitialState(); }
183184185186187188189190191192193194195
map.clearInitialState(); } public boolean initialStateMarked() { PropertyMap map = getPropertyMap(false); if (map != null) return map.initialStateMarked(); // TODO gcrawford - do something better? return false; }
194195196197198199200201202203
return false; } public Object saveState(FacesContext context) { PropertyMap map = getPropertyMap(false); if (map != null) return map.saveState(context); return null; }
241242243244245246247248249250251