String id = attributes.getValue(TAG_INSERTINSTANCE_ATTR_ID);
getLogger().debug("inserting instance [id=" + String.valueOf(id) + "]");
Instance instance = (Instance) session.getAttribute(id);
if (instance != null) {
instance.toSAX(this, true);
}
else {
getLogger().debug("could not find instance [id=" + String.valueOf(id) + "]");
}
}