diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-04-03 15:15:13 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-04-03 15:15:13 -0700 |
commit | b415955846ce0d5c2e0c283f897190ccd2c3616a (patch) | |
tree | 10daf6bb8a05edf5052a33f10ea16c73d8ae0d89 /java/src/IceGridGUI/LiveDeployment/ServiceEditor.java | |
parent | Bug 3465 - Remove _adapter members from test where unecessary (diff) | |
download | ice-b415955846ce0d5c2e0c283f897190ccd2c3616a.tar.bz2 ice-b415955846ce0d5c2e0c283f897190ccd2c3616a.tar.xz ice-b415955846ce0d5c2e0c283f897190ccd2c3616a.zip |
removing Java2 mapping
Diffstat (limited to 'java/src/IceGridGUI/LiveDeployment/ServiceEditor.java')
-rw-r--r-- | java/src/IceGridGUI/LiveDeployment/ServiceEditor.java | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/ServiceEditor.java b/java/src/IceGridGUI/LiveDeployment/ServiceEditor.java index 5b09f6303a5..559121a092d 100644 --- a/java/src/IceGridGUI/LiveDeployment/ServiceEditor.java +++ b/java/src/IceGridGUI/LiveDeployment/ServiceEditor.java @@ -6,6 +6,7 @@ // ICE_LICENSE file included in this distribution. // // ********************************************************************** + package IceGridGUI.LiveDeployment; import java.awt.event.ActionEvent; @@ -26,7 +27,6 @@ import com.jgoodies.looks.HeaderStyle; import com.jgoodies.looks.BorderStyle; import com.jgoodies.looks.plastic.PlasticLookAndFeel; - import IceGrid.*; import IceGridGUI.*; @@ -51,15 +51,14 @@ class ServiceEditor extends CommunicatorEditor Action refresh = new AbstractAction("Refresh") { - public void actionPerformed(ActionEvent e) + public void actionPerformed(ActionEvent e) { _buildId.setText("Retrieving..."); _properties.clear(); _target.showRuntimeProperties(); } }; - refresh.putValue(Action.SHORT_DESCRIPTION, - "Reread the properties from the service"); + refresh.putValue(Action.SHORT_DESCRIPTION, "Reread the properties from the service"); _refreshButton = new JButton(refresh); } @@ -82,7 +81,7 @@ class ServiceEditor extends CommunicatorEditor { _buildId.setText("Retrieving..."); _properties.clear(); - + // // Retrieve all properties in background // @@ -103,7 +102,7 @@ class ServiceEditor extends CommunicatorEditor builder.append("", _started); builder.nextLine(); - + builder.append("Build Id"); builder.append(_buildId, _refreshButton); builder.nextLine(); @@ -120,8 +119,7 @@ class ServiceEditor extends CommunicatorEditor builder.nextRow(-6); CellConstraints cc = new CellConstraints(); JScrollPane scrollPane = new JScrollPane(_properties); - builder.add(scrollPane, - cc.xywh(builder.getColumn(), builder.getRow(), 3, 7)); + builder.add(scrollPane, cc.xywh(builder.getColumn(), builder.getRow(), 3, 7)); builder.nextRow(6); builder.nextLine(); @@ -155,12 +153,12 @@ class ServiceEditor extends CommunicatorEditor // } - void setRuntimeProperties(java.util.SortedMap map, Service service) + void setRuntimeProperties(java.util.SortedMap<String, String> map, Service service) { if(service == _target ) { _properties.setSortedMap(map); - + String buildString = (String)map.get("BuildId"); if(buildString == null) { @@ -184,7 +182,7 @@ class ServiceEditor extends CommunicatorEditor putClientProperty(PlasticLookAndFeel.BORDER_STYLE_KEY, BorderStyle.SEPARATOR); setFloatable(false); putClientProperty("JToolBar.isRollover", Boolean.TRUE); - + LiveActions la = _coordinator.getLiveActionsForMenu(); add(la.get(TreeNode.START)); @@ -201,4 +199,3 @@ class ServiceEditor extends CommunicatorEditor private TableField _properties = new TableField("Name", "Value"); private JToolBar _toolBar; } - |