*
* @return the transformed root node
*/
public ConfigurationNode getTransformedRoot()
{
ViewNode result = new ViewNode();
ViewNode atParent = result;
if (atPath != null)
{
// Build the complete path
for (Iterator it = atPath.iterator(); it.hasNext();)
{
ViewNode node = new ViewNode();
node.setName((String) it.next());
atParent.addChild(node);
atParent = node;
}
}