summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/ReplicaGroups.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
committerBernard Normier <bernard@zeroc.com>2007-02-01 17:09:49 +0000
commitabada90e3f84dc703b8ddc9efcbed8a946fadead (patch)
tree2c6f9dccd510ea97cb927a7bd635422efaae547a /java/src/IceGridGUI/Application/ReplicaGroups.java
parentremoving trace message (diff)
downloadice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.bz2
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.xz
ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.zip
Expanded tabs into spaces
Diffstat (limited to 'java/src/IceGridGUI/Application/ReplicaGroups.java')
-rwxr-xr-xjava/src/IceGridGUI/Application/ReplicaGroups.java288
1 files changed, 144 insertions, 144 deletions
diff --git a/java/src/IceGridGUI/Application/ReplicaGroups.java b/java/src/IceGridGUI/Application/ReplicaGroups.java
index 47960ef28bc..6ab770a779a 100755
--- a/java/src/IceGridGUI/Application/ReplicaGroups.java
+++ b/java/src/IceGridGUI/Application/ReplicaGroups.java
@@ -20,14 +20,14 @@ class ReplicaGroups extends ListTreeNode
static public java.util.List
copyDescriptors(java.util.List descriptors)
{
- java.util.List copy = new java.util.LinkedList();
- java.util.Iterator p = descriptors.iterator();
- while(p.hasNext())
- {
- copy.add(ReplicaGroup.copyDescriptor(
- (ReplicaGroupDescriptor)p.next()));
- }
- return copy;
+ java.util.List copy = new java.util.LinkedList();
+ java.util.Iterator p = descriptors.iterator();
+ while(p.hasNext())
+ {
+ copy.add(ReplicaGroup.copyDescriptor(
+ (ReplicaGroupDescriptor)p.next()));
+ }
+ return copy;
}
//
@@ -35,198 +35,198 @@ class ReplicaGroups extends ListTreeNode
//
public boolean[] getAvailableActions()
{
- boolean[] actions = new boolean[ACTION_COUNT];
+ boolean[] actions = new boolean[ACTION_COUNT];
- Object descriptor = getCoordinator().getClipboard();
- if(descriptor != null)
- {
- actions[PASTE] = descriptor instanceof ReplicaGroupDescriptor;
- }
+ Object descriptor = getCoordinator().getClipboard();
+ if(descriptor != null)
+ {
+ actions[PASTE] = descriptor instanceof ReplicaGroupDescriptor;
+ }
- actions[NEW_REPLICA_GROUP] = true;
- return actions;
+ actions[NEW_REPLICA_GROUP] = true;
+ return actions;
}
public JPopupMenu getPopupMenu()
{
- ApplicationActions actions = getCoordinator().getActionsForPopup();
- if(_popup == null)
- {
- _popup = new JPopupMenu();
- _popup.add(actions.get(NEW_REPLICA_GROUP));
- }
- actions.setTarget(this);
- return _popup;
+ ApplicationActions actions = getCoordinator().getActionsForPopup();
+ if(_popup == null)
+ {
+ _popup = new JPopupMenu();
+ _popup.add(actions.get(NEW_REPLICA_GROUP));
+ }
+ actions.setTarget(this);
+ return _popup;
}
public void newReplicaGroup()
{
- ReplicaGroupDescriptor descriptor = new
- ReplicaGroupDescriptor(
- makeNewChildId("NewReplicaGroup"),
- null,
- new java.util.LinkedList(),
- "");
-
- newReplicaGroup(descriptor);
+ ReplicaGroupDescriptor descriptor = new
+ ReplicaGroupDescriptor(
+ makeNewChildId("NewReplicaGroup"),
+ null,
+ new java.util.LinkedList(),
+ "");
+
+ newReplicaGroup(descriptor);
}
public void paste()
{
- Object descriptor = getCoordinator().getClipboard();
-
- ReplicaGroupDescriptor d = ReplicaGroup.copyDescriptor(
- (ReplicaGroupDescriptor)descriptor);
- d.id = makeNewChildId(d.id);
- newReplicaGroup(d);
+ Object descriptor = getCoordinator().getClipboard();
+
+ ReplicaGroupDescriptor d = ReplicaGroup.copyDescriptor(
+ (ReplicaGroupDescriptor)descriptor);
+ d.id = makeNewChildId(d.id);
+ newReplicaGroup(d);
}
ReplicaGroups(TreeNode parent, java.util.List desc) throws UpdateFailedException
{
- super(false, parent, "Replica Groups");
- _descriptors = desc;
-
- java.util.Iterator p = _descriptors.iterator();
- while(p.hasNext())
- {
- ReplicaGroupDescriptor descriptor
- = (ReplicaGroupDescriptor)p.next();
-
- insertChild(new ReplicaGroup(false, this, descriptor), false);
- }
+ super(false, parent, "Replica Groups");
+ _descriptors = desc;
+
+ java.util.Iterator p = _descriptors.iterator();
+ while(p.hasNext())
+ {
+ ReplicaGroupDescriptor descriptor
+ = (ReplicaGroupDescriptor)p.next();
+
+ insertChild(new ReplicaGroup(false, this, descriptor), false);
+ }
}
java.util.LinkedList getUpdates()
{
- java.util.LinkedList updates = new java.util.LinkedList();
- java.util.Iterator p = _children.iterator();
- while(p.hasNext())
- {
- ReplicaGroup ra = (ReplicaGroup)p.next();
- if(ra.getEditable().isNew() || ra.getEditable().isModified())
- {
- updates.add(ra.getDescriptor());
- }
- }
- return updates;
+ java.util.LinkedList updates = new java.util.LinkedList();
+ java.util.Iterator p = _children.iterator();
+ while(p.hasNext())
+ {
+ ReplicaGroup ra = (ReplicaGroup)p.next();
+ if(ra.getEditable().isNew() || ra.getEditable().isModified())
+ {
+ updates.add(ra.getDescriptor());
+ }
+ }
+ return updates;
}
void commit()
{
- _editable.commit();
- java.util.Iterator p = _children.iterator();
- while(p.hasNext())
- {
- ReplicaGroup rg = (ReplicaGroup)p.next();
- rg.commit();
- }
+ _editable.commit();
+ java.util.Iterator p = _children.iterator();
+ while(p.hasNext())
+ {
+ ReplicaGroup rg = (ReplicaGroup)p.next();
+ rg.commit();
+ }
}
void update(java.util.List descriptors, String[] removeReplicaGroups)
{
- _descriptors = descriptors;
-
- //
- // One big set of removes
- //
- removeChildren(removeReplicaGroups);
-
- //
- // Updates and inserts
- //
- java.util.List updatedChildren = new java.util.LinkedList();
- java.util.Iterator p = descriptors.iterator();
- while(p.hasNext())
- {
- ReplicaGroupDescriptor descriptor =
- (ReplicaGroupDescriptor)p.next();
-
- ReplicaGroup child
- = (ReplicaGroup)findChild(descriptor.id);
-
- if(child == null)
- {
- try
- {
- insertChild(
- new ReplicaGroup(false, this, descriptor),
- true);
- }
- catch(UpdateFailedException e)
- {
- assert false;
- }
- }
- else
- {
- child.rebuild(descriptor);
- updatedChildren.add(child);
- }
- }
- childrenChanged(updatedChildren);
+ _descriptors = descriptors;
+
+ //
+ // One big set of removes
+ //
+ removeChildren(removeReplicaGroups);
+
+ //
+ // Updates and inserts
+ //
+ java.util.List updatedChildren = new java.util.LinkedList();
+ java.util.Iterator p = descriptors.iterator();
+ while(p.hasNext())
+ {
+ ReplicaGroupDescriptor descriptor =
+ (ReplicaGroupDescriptor)p.next();
+
+ ReplicaGroup child
+ = (ReplicaGroup)findChild(descriptor.id);
+
+ if(child == null)
+ {
+ try
+ {
+ insertChild(
+ new ReplicaGroup(false, this, descriptor),
+ true);
+ }
+ catch(UpdateFailedException e)
+ {
+ assert false;
+ }
+ }
+ else
+ {
+ child.rebuild(descriptor);
+ updatedChildren.add(child);
+ }
+ }
+ childrenChanged(updatedChildren);
}
Object getDescriptor()
{
- return _descriptors;
+ return _descriptors;
}
/*
Object saveDescriptor()
{
- assert false;
- return null;
+ assert false;
+ return null;
}
void restoreDescriptor(Object savedDescriptor)
{
- assert false;
+ assert false;
}
*/
void removeDescriptor(Object descriptor)
{
- //
- // A straight remove uses equals(), which is not the desired behavior
- //
- java.util.Iterator p = _descriptors.iterator();
- while(p.hasNext())
- {
- if(descriptor == p.next())
- {
- p.remove();
- break;
- }
- }
+ //
+ // A straight remove uses equals(), which is not the desired behavior
+ //
+ java.util.Iterator p = _descriptors.iterator();
+ while(p.hasNext())
+ {
+ if(descriptor == p.next())
+ {
+ p.remove();
+ break;
+ }
+ }
}
void tryAdd(ReplicaGroupDescriptor descriptor, boolean addDescriptor)
- throws UpdateFailedException
+ throws UpdateFailedException
{
- insertChild(
- new ReplicaGroup(true, this, descriptor),
- true);
-
- if(addDescriptor)
- {
- _descriptors.add(descriptor);
- }
+ insertChild(
+ new ReplicaGroup(true, this, descriptor),
+ true);
+
+ if(addDescriptor)
+ {
+ _descriptors.add(descriptor);
+ }
}
private void newReplicaGroup(ReplicaGroupDescriptor descriptor)
{
- ReplicaGroup replicaGroup =
- new ReplicaGroup(this, descriptor);
-
- try
- {
- insertChild(replicaGroup, true);
- }
- catch(UpdateFailedException e)
- {
- assert false;
- }
- getRoot().setSelectedNode(replicaGroup);
+ ReplicaGroup replicaGroup =
+ new ReplicaGroup(this, descriptor);
+
+ try
+ {
+ insertChild(replicaGroup, true);
+ }
+ catch(UpdateFailedException e)
+ {
+ assert false;
+ }
+ getRoot().setSelectedNode(replicaGroup);
}
private java.util.List _descriptors;