diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-04-12 11:55:04 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-04-12 11:55:04 +0000 |
commit | 9f876516b8bfbf876aac6b37afe477a9265e9ed7 (patch) | |
tree | 7609792a64ae713c1d454a9d789c363fde2389d7 /java/src/IceGridGUI/Application/Nodes.java | |
parent | Added support for property sets. (diff) | |
download | ice-9f876516b8bfbf876aac6b37afe477a9265e9ed7.tar.bz2 ice-9f876516b8bfbf876aac6b37afe477a9265e9ed7.tar.xz ice-9f876516b8bfbf876aac6b37afe477a9265e9ed7.zip |
Changes to allow compiling the GUI with property set descriptor changes.
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);
|