* Bind the new nodes to the property values in this context
* @param descPLists the map of the new nodes to property lists
*/
private void bindChildren(Map descPLists) throws FOPException {
for (Iterator i = descPLists.keySet().iterator(); i.hasNext(); ) {
FONode desc = (FONode) i.next();
PropertyList descPList;
if (desc instanceof FObj) {
descPList = (PropertyList) descPLists.get(desc);
((FObj) desc).bind(descPList);
} else if (desc instanceof FOText) {
descPList = (PropertyList) descPLists.get(desc.getParent());
if (descPList == null) {
descPList = propertyList;
}
((FOText) desc).bind(descPList);
}