*
* @return the sub configuration for the global section
*/
private SubnodeConfiguration getGlobalSection()
{
InMemoryNodeModel parentModel = getSubConfigurationParentModel();
NodeSelector selector = new NodeSelector(null); // selects parent
parentModel.trackNode(selector, this);
GlobalSectionNodeModel model =
new GlobalSectionNodeModel(this, selector);
SubnodeConfiguration sub = new SubnodeConfiguration(this, model);
initSubConfigurationForThisParent(sub);
return sub;