* @exception IllegalStateException if the popped object is not
* of the correct type
*/
public void end(String namespace, String name) throws Exception {
ListEntriesBean top = null;
try {
top = (ListEntriesBean) digester.pop();
} catch (Exception e) {
throw new IllegalStateException("Popped object is not a " +
CLASS_NAME + " instance");
}
ListEntriesHolder leh = (ListEntriesHolder) digester.peek();
ListEntriesBean old = leh.getListEntries();
if (old == null) {
if (digester.getLogger().isDebugEnabled()) {
digester.getLogger().debug("[ListEntriesRule]{" +
digester.getMatch() +
"} New");