{
CMValidator.MatchModelNode child = (CMValidator.MatchModelNode)matchModelNode.children.get(0);
excludeCMNode = child.cmNode;
}
CMNodeList nodeList = group.getChildNodes();
int size = nodeList.getLength();
for (int i = 0; i < size; i++)
{
CMNode alternative = nodeList.item(i);
if (alternative != excludeCMNode)
{
Action action = new Action(ModelQueryAction.REPLACE, parent, alternative, startIndex, endIndex);
actionList.add(action);
}