}
protected CMAnyElement lookupOrCreateCMAnyElement(CMDocumentImpl parentCMDocument, String uri)
{
CMNamedNodeMapImpl anyElementMap = parentCMDocument.getAnyElements();
CMAnyElementImpl anyElement = (CMAnyElementImpl)anyElementMap.getNamedItem(CMAnyElementImpl.computeNodeName(uri));
if (anyElement == null)
{
//System.out.println("create anyElement " + uri);
anyElement = new CMAnyElementImpl(uri);
anyElement.setInferred(true);
anyElementMap.put(anyElement);
}
return anyElement;
}