public void createCMContent(CMDocument parentCMDocument, CMElementDeclaration parentEd, CMDocument childCMDocument, CMElementDeclaration childEd, boolean isLocal, String uri)
{
// add element to the parent's content
// consider all content to be of the form (A | B | C)*
//
CMGroupImpl group = (CMGroupImpl)parentEd.getContent();
CMNodeListImpl groupChildNodeList = (CMNodeListImpl)group.getChildNodes();
if (parentCMDocument == childCMDocument)
{
if (!groupChildNodeList.contains(childEd))
{