From fc7fc8af52548043dca3b3ee9ddbccaf1477008c Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 4 Jul 2013 22:21:31 +0200 Subject: Fixed ICE-5344 - IceGrid Admin without JavaFX? --- java/src/IceGridGUI/Application/ParameterValuesField.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'java/src/IceGridGUI/Application/ParameterValuesField.java') diff --git a/java/src/IceGridGUI/Application/ParameterValuesField.java b/java/src/IceGridGUI/Application/ParameterValuesField.java index 9a661be086c..682e30ab2d2 100644 --- a/java/src/IceGridGUI/Application/ParameterValuesField.java +++ b/java/src/IceGridGUI/Application/ParameterValuesField.java @@ -31,7 +31,7 @@ import javax.swing.table.TableColumn; // // A special field used to show/edit parameter values // - +@SuppressWarnings("unchecked") public class ParameterValuesField extends JTable { public ParameterValuesField(Editor editor) @@ -130,7 +130,7 @@ public class ParameterValuesField extends JTable { getCellEditor().stopCellEditing(); } - @SuppressWarnings("unchecked") + java.util.Vector> vector = (java.util.Vector>)_model.getDataVector(); @@ -172,9 +172,9 @@ public class ParameterValuesField extends JTable private static final String _notSet = "Not set"; - private JComboBox _useDefaultCombo = new JComboBox(new String[]{_useDefault}); + private JComboBox _useDefaultCombo = new JComboBox(new String[]{_useDefault}); - private JComboBox _notSetCombo = new JComboBox(new String[]{_notSet}); + private JComboBox _notSetCombo = new JComboBox(new String[]{_notSet}); private TableCellEditor _useDefaultEditor = new DefaultCellEditor(_useDefaultCombo); private TableCellEditor _notSetEditor = new DefaultCellEditor(_notSetCombo); -- cgit v1.2.3