Node oMatchNode = pNode.getAttributes().getNamedItem(Constants.ATTR_MATCH);
if (oMatchNode != null) {
return new PropertyMatchCondition(oPropName, oMatchNode.getNodeValue());
} else {
throw new AttributeRequiredException(Constants.ATTR_MATCH, pNode);
}
}
return null;
}