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