}
}
else {
IGroup fileGroup = (IGroup) fileNode.getUserObject();
IDictionary dictionary = fileGroup.findDictionary();
// TODO pas sûr, c'est pas encore implémenté
String path;
Object objectByPath;
for (String key : dictionary.getAllKeys()) {
if (key.contains(filterKey)) {
path = dictionary.getPath(key);
objectByPath = fileGroup.findObjectByPath(path);
if (objectByPath instanceof IDataItem) {
fileNode.add(new GumTreeNode(objectByPath));
}
}