Node oPropertyNameNode = pNode.getAttributes().getNamedItem(Constants.ATTR_PROPERTY);
if (oPropertyNameNode == null) {
return null;
}
Node oValueNode = ParserHelper.getAttribute(pNode, Constants.ATTR_VALUE, true);
return new SetPropertyAction(oPropertyNameNode.getNodeValue(), oValueNode.getNodeValue());
}