diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 14:56:46 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-02-14 14:56:46 +0000 |
commit | 20591078bc1c9e6b8d15f1783cbc2eef4fa435c2 (patch) | |
tree | 5332c02bbfffa309678ebe850d2626bd71034146 /java/src/IceGridGUI/Application/AdapterEditor.java | |
parent | More Ice.OA fixes (diff) | |
download | ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.tar.bz2 ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.tar.xz ice-20591078bc1c9e6b8d15f1783cbc2eef4fa435c2.zip |
Remove Ice.OA.
Diffstat (limited to 'java/src/IceGridGUI/Application/AdapterEditor.java')
-rwxr-xr-x | java/src/IceGridGUI/Application/AdapterEditor.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/java/src/IceGridGUI/Application/AdapterEditor.java b/java/src/IceGridGUI/Application/AdapterEditor.java index 5b8f8f85647..86162008c8f 100755 --- a/java/src/IceGridGUI/Application/AdapterEditor.java +++ b/java/src/IceGridGUI/Application/AdapterEditor.java @@ -298,21 +298,21 @@ class AdapterEditor extends CommunicatorChildEditor Adapter adapter = getAdapter(); if(!name.equals(_oldName)) { - adapter.removeProperty("Ice.OA." + _oldName + ".Endpoints"); - adapter.removeProperty("Ice.OA." + _oldName + ".PublishedEndpoints"); + adapter.removeProperty(_oldName + ".Endpoints"); + adapter.removeProperty(_oldName + ".PublishedEndpoints"); _oldName = name; } - adapter.setProperty("Ice.OA." + name + ".Endpoints", _endpoints.getText().trim()); + adapter.setProperty(name + ".Endpoints", _endpoints.getText().trim()); Object published = _publishedEndpoints.getSelectedItem(); if(published == PUBLISH_ACTUAL) { - adapter.removeProperty("Ice.OA." + name + ".PublishedEndpoints"); + adapter.removeProperty(name + ".PublishedEndpoints"); } else { - adapter.setProperty("Ice.OA." + name + ".PublishedEndpoints", + adapter.setProperty(name + ".PublishedEndpoints", published.toString().trim()); } @@ -437,7 +437,7 @@ class AdapterEditor extends CommunicatorChildEditor _name.setText(Utils.substitute(descriptor.name, resolver)); _name.setEditable(isEditable); - String oaPrefix = "Ice.OA." + descriptor.name + "."; + String oaPrefix = descriptor.name + "."; _description.setText( Utils.substitute(descriptor.description, resolver)); |