summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java')
-rw-r--r--java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java b/java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java
index da166ea538d..4292cd868ae 100644
--- a/java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java
+++ b/java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java
@@ -14,7 +14,6 @@ import javax.swing.JComboBox;
import javax.swing.JComponent;
import javax.swing.JTextField;
-import IceGrid.*;
import IceGridGUI.*;
class ServerInstancePropertySetEditor extends PropertySetEditor
@@ -28,17 +27,20 @@ class ServerInstancePropertySetEditor extends PropertySetEditor
idTextField.getDocument().addDocumentListener(_updateListener);
}
+ @Override
protected void buildPropertiesPanel()
{
super.buildPropertiesPanel();
_propertiesPanel.setName("Service Instance Property Set");
}
+ @Override
protected JComponent getIdComponent()
{
return _id;
}
+ @Override
protected String getIdText()
{
if(_id.getSelectedItem() == null)
@@ -51,6 +53,7 @@ class ServerInstancePropertySetEditor extends PropertySetEditor
}
}
+ @Override
@SuppressWarnings("unchecked")
protected void showId(String unsubstitutedId, Utils.Resolver resolver)
{