diff options
Diffstat (limited to 'java/src/IceGridGUI/Application/Nodes.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/Nodes.java | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/java/src/IceGridGUI/Application/Nodes.java b/java/src/IceGridGUI/Application/Nodes.java index 51e2fa2c410..95748f2beb8 100755 --- a/java/src/IceGridGUI/Application/Nodes.java +++ b/java/src/IceGridGUI/Application/Nodes.java @@ -73,8 +73,8 @@ class Nodes extends ListTreeNode new java.util.LinkedList(),
new java.util.LinkedList(),
"",
- ""
- ));
+ "",
+ new java.util.HashMap()));
}
Nodes(TreeNode parent, java.util.Map descriptors)
@@ -221,11 +221,15 @@ class Nodes extends ListTreeNode if(node == null)
{
+ //
+ // TODO: BENOIT: Add support for property sets
+ //
NodeDescriptor nodeDescriptor = new NodeDescriptor(update.variables,
update.serverInstances,
update.servers,
update.loadFactor.value,
- update.description.value);
+ update.description.value,
+ new java.util.HashMap());
_descriptors.put(update.name, nodeDescriptor);
node = new Node(false, this, update.name, nodeDescriptor);
newChildren.add(node);
|