case CMNode.ELEMENT_DECLARATION :
return isSameDeclaration((CMElementDeclaration) content, target);
case CMNode.GROUP :
CMNodeList children = ((CMGroup) content).getChildNodes();
for (int i = 0; i < children.getLength(); i++) {
CMNode child = children.item(i);
switch (child.getNodeType()) {
case CMNode.ELEMENT_DECLARATION :
if (isSameDeclaration((CMElementDeclaration) child, target))
return true;
continue; // Go next child.
case CMNode.GROUP :