From 20591078bc1c9e6b8d15f1783cbc2eef4fa435c2 Mon Sep 17 00:00:00 2001 From: Dwayne Boone Date: Wed, 14 Feb 2007 14:56:46 +0000 Subject: Remove Ice.OA. --- java/src/IceGridGUI/Application/AdapterEditor.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'java/src/IceGridGUI/Application/AdapterEditor.java') 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)); -- cgit v1.2.3