diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-07-14 23:40:17 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-07-14 23:40:17 +0000 |
commit | 87236a07f5bd4201cd7c2f43d6e9a5fc5d50fbdb (patch) | |
tree | e8ecaf5e21798004eab55cfd6df6a7b9bb0e764b /java/src/IceGrid/TreeNode/CommonBaseI.java | |
parent | adding package, adapterDeactivation (diff) | |
download | ice-87236a07f5bd4201cd7c2f43d6e9a5fc5d50fbdb.tar.bz2 ice-87236a07f5bd4201cd7c2f43d6e9a5fc5d50fbdb.tar.xz ice-87236a07f5bd4201cd7c2f43d6e9a5fc5d50fbdb.zip |
Displaying more properties
Diffstat (limited to 'java/src/IceGrid/TreeNode/CommonBaseI.java')
-rwxr-xr-x | java/src/IceGrid/TreeNode/CommonBaseI.java | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/java/src/IceGrid/TreeNode/CommonBaseI.java b/java/src/IceGrid/TreeNode/CommonBaseI.java index e2ff879cc36..3f2122e57f4 100755 --- a/java/src/IceGrid/TreeNode/CommonBaseI.java +++ b/java/src/IceGrid/TreeNode/CommonBaseI.java @@ -109,7 +109,7 @@ abstract class CommonBaseI implements CommonBase return null;
}
- public void displayProperties(SimpleInternalFrame frame, int view)
+ public void displayProperties()
{
if(_panel == null)
{
@@ -119,10 +119,11 @@ abstract class CommonBaseI implements CommonBase _panel.setBorder(Borders.DIALOG_BORDER);
}
- frame.setTitle("Properties");
- frame.setContent(_panel);
- frame.validate();
- frame.repaint();
+ SimpleInternalFrame propertiesFrame = _model.getPropertiesFrame();
+ propertiesFrame.setTitle("Properties");
+ propertiesFrame.setContent(_panel);
+ propertiesFrame.validate();
+ propertiesFrame.repaint();
}
public Component getTreeCellRendererComponent(
|