diff options
author | Matthew Newhook <matthew@zeroc.com> | 2014-08-12 15:50:25 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2014-08-12 15:50:25 -0230 |
commit | 2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b (patch) | |
tree | b460e22e91a9fbb9cfb71631303963fa94dd2c9c /java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java | |
parent | ICE-5492 Tcp Loopback Fast Path for C#/C++ on Windows (diff) | |
download | ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.tar.bz2 ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.tar.xz ice-2f5c841cfce2ae5ff26e2e373c3ea7188da8b75b.zip |
Added eclipse project settings for java.
Fix lots of warnings in Ice for Java.
Diffstat (limited to 'java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java')
-rw-r--r-- | java/src/IceGridGUI/Application/ServerInstancePropertySetEditor.java | 5 |
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) { |