summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/ReplicaGroups.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-05-04 16:15:21 +0000
committerBernard Normier <bernard@zeroc.com>2006-05-04 16:15:21 +0000
commit87ed29e743f1c53e01878259a2c8ba1b352d3933 (patch)
treecf7de9d5ef8ac0362839c6122cad9d5217867e7f /java/src/IceGridGUI/Application/ReplicaGroups.java
parentFixed typo. (diff)
downloadice-87ed29e743f1c53e01878259a2c8ba1b352d3933.tar.bz2
ice-87ed29e743f1c53e01878259a2c8ba1b352d3933.tar.xz
ice-87ed29e743f1c53e01878259a2c8ba1b352d3933.zip
Better PropertySets support
Diffstat (limited to 'java/src/IceGridGUI/Application/ReplicaGroups.java')
-rwxr-xr-xjava/src/IceGridGUI/Application/ReplicaGroups.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/java/src/IceGridGUI/Application/ReplicaGroups.java b/java/src/IceGridGUI/Application/ReplicaGroups.java
index 6250574e0d9..e5689b1bd67 100755
--- a/java/src/IceGridGUI/Application/ReplicaGroups.java
+++ b/java/src/IceGridGUI/Application/ReplicaGroups.java
@@ -123,14 +123,14 @@ class ReplicaGroups extends ListTreeNode
}
}
- void update(java.util.List descriptors, String[] removeAdapters)
+ void update(java.util.List descriptors, String[] removeReplicaGroups)
{
_descriptors = descriptors;
//
// One big set of removes
//
- removeChildren(removeAdapters);
+ removeChildren(removeReplicaGroups);
//
// Updates and inserts
@@ -167,11 +167,12 @@ class ReplicaGroups extends ListTreeNode
childrenChanged(updatedChildren);
}
-
Object getDescriptor()
{
return _descriptors;
}
+
+ /*
Object saveDescriptor()
{
assert false;
@@ -181,6 +182,7 @@ class ReplicaGroups extends ListTreeNode
{
assert false;
}
+ */
void removeDescriptor(Object descriptor)
{