229230231232233234235236237238239
} else { notifier.notifyNodeVisited(fqn, true, ctx); Object keySet = workspaceNode.getKeys(); workspace.addNode(workspaceNode); notifier.notifyNodeVisited(fqn, false, ctx); result = keySet; } return result; }
251252253254255256257258259260261
} else { notifier.notifyNodeVisited(command.getFqn(), true, ctx); Object data = workspaceNode.getData(); workspace.addNode(workspaceNode); notifier.notifyNodeVisited(command.getFqn(), false, ctx); result = data; } return result; }
273274275276277278279280281282283
} else { notifier.notifyNodeVisited(command.getFqn(), true, ctx); Object nameSet = workspaceNode.getChildrenNames(); workspace.addNode(workspaceNode); notifier.notifyNodeVisited(command.getFqn(), false, ctx); result = nameSet; } return result; }
299300301302303304305306307308309
result = null; } else { notifier.notifyNodeVisited(command.getFqn(), true, ctx); workspace.addNode(workspaceNode); notifier.notifyNodeVisited(command.getFqn(), false, ctx); result = workspaceNode.getNode(); } return result; }