// name the divPanel so we can post state back to this state object.
NameService ns = NameService.instance(pageContext.getSession());
String name = state.getObjectName();
if (name == null) {
ns.nameObject("DivPanel", state);
ns.put(state);
}
else if (ns.get(name) == null) {
// no longer stored in the NameService, add it.
ns.put(state);