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/ApplicationDetailsDialog.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/ApplicationDetailsDialog.java')
-rw-r--r-- | java/src/IceGridGUI/LiveDeployment/ApplicationDetailsDialog.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/java/src/IceGridGUI/LiveDeployment/ApplicationDetailsDialog.java b/java/src/IceGridGUI/LiveDeployment/ApplicationDetailsDialog.java index 5ea9b7bfaa3..6e21de1ba3a 100644 --- a/java/src/IceGridGUI/LiveDeployment/ApplicationDetailsDialog.java +++ b/java/src/IceGridGUI/LiveDeployment/ApplicationDetailsDialog.java @@ -6,6 +6,7 @@ // ICE_LICENSE file included in this distribution. // // ********************************************************************** + package IceGridGUI.LiveDeployment; import java.awt.BorderLayout; @@ -38,8 +39,7 @@ class ApplicationDetailsDialog extends JDialog { ApplicationDetailsDialog(final Root root) { - super(root.getCoordinator().getMainFrame(), - "Application Details - IceGrid Admin", true); + super(root.getCoordinator().getMainFrame(), "Application Details - IceGrid Admin", true); setDefaultCloseOperation(JDialog.HIDE_ON_CLOSE); _mainFrame = root.getCoordinator().getMainFrame(); @@ -50,13 +50,13 @@ class ApplicationDetailsDialog extends JDialog _updateTime.setEditable(false); _updateUser.setEditable(false); _revision.setEditable(false); - + FormLayout layout = new FormLayout("right:pref, 3dlu, pref", ""); DefaultFormBuilder builder = new DefaultFormBuilder(layout); builder.setDefaultDialogBorder(); builder.setRowGroupingEnabled(true); builder.setLineGapSize(LayoutStyle.getCurrent().getLinePad()); - + builder.append("Name", _name); builder.nextLine(); builder.append("UUID", _uuid); @@ -74,7 +74,7 @@ class ApplicationDetailsDialog extends JDialog Container contentPane = getContentPane(); contentPane.add(builder.getPanel()); - + pack(); setResizable(false); } @@ -101,5 +101,4 @@ class ApplicationDetailsDialog extends JDialog private JTextField _updateUser = new JTextField(30); private JTextField _revision = new JTextField(30); private JFrame _mainFrame; - } |