summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/Root.java
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2006-12-13 15:50:27 +0000
committerBernard Normier <bernard@zeroc.com>2006-12-13 15:50:27 +0000
commit85ab37aed400243314801028e6a7b32a52d53670 (patch)
treef3d6f941a95c0cd4443f1db910390e58f2bee8be /java/src/IceGridGUI/Application/Root.java
parent- Updating makewindist.py and component files to sync with changes in (diff)
downloadice-85ab37aed400243314801028e6a7b32a52d53670.tar.bz2
ice-85ab37aed400243314801028e6a7b32a52d53670.tar.xz
ice-85ab37aed400243314801028e6a7b32a52d53670.zip
Fixed bug #1611
Diffstat (limited to 'java/src/IceGridGUI/Application/Root.java')
-rwxr-xr-xjava/src/IceGridGUI/Application/Root.java15
1 files changed, 14 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/Root.java b/java/src/IceGridGUI/Application/Root.java
index 9c7453fdc8d..ef8854dc815 100755
--- a/java/src/IceGridGUI/Application/Root.java
+++ b/java/src/IceGridGUI/Application/Root.java
@@ -1140,6 +1140,17 @@ public class Root extends ListTreeNode
return _updated || !_registryUpdatesEnabled;
}
+ public void setPane(ApplicationPane app)
+ {
+ _applicationPane = app;
+ }
+
+ public ApplicationPane getPane()
+ {
+ return _applicationPane;
+ }
+
+
Editor getEditor(Class c, TreeNode node)
{
Editor result = (Editor)_editorMap.get(c);
@@ -1319,7 +1330,7 @@ public class Root extends ListTreeNode
return _replicaGroups;
}
- Root getRoot()
+ public Root getRoot()
{
return this;
}
@@ -1422,6 +1433,8 @@ public class Root extends ListTreeNode
//
private java.util.Map _editorMap = new java.util.HashMap();
+ private ApplicationPane _applicationPane;
+
static private DefaultTreeCellRenderer _cellRenderer;
static private JPopupMenu _popup;
}