* an explicit declaration in the application targeted SDK.
* @param xmlElement the implied element that was added to the resulting xml.
* @param reason optional contextual information whey the implied element was added.
*/
void recordImpliedNodeAction(XmlElement xmlElement, String reason) {
NodeKey storageKey = xmlElement.getId();
Actions.DecisionTreeRecord nodeDecisionTree = mRecords.get(storageKey);
if (nodeDecisionTree == null) {
nodeDecisionTree = new Actions.DecisionTreeRecord();
mRecords.put(storageKey, nodeDecisionTree);
}