change some alignments
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 24 Apr 2008 23:54:28 +0000 (23:54 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 24 Apr 2008 23:54:28 +0000 (23:54 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@760 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/jsite/gui/EditNodeDialog.java

index 12c91cb..3f0694d 100644 (file)
@@ -46,7 +46,7 @@ import net.pterodactylus.util.swing.SwingUtils;
 
 /**
  * Dialog that lets the user edit the properties of a node.
- * 
+ *
  * @author David ‘Bombe’ Roden &lt;bombe@freenetproject.org&gt;
  * @version $Id$
  */
@@ -90,7 +90,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /** The same machine checkbox. */
        private JCheckBox sameMachineCheckBox;
-       
+
        /** The same machine action. */
        private I18nAction sameMachineAction;
 
@@ -99,7 +99,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Creates a new node edit dialog with the given parent.
-        * 
+        *
         * @param parentDialog
         *            The parent dialog of this dialog
         */
@@ -118,7 +118,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Returns the user-given name of the node.
-        * 
+        *
         * @return The user-given name of the node
         */
        public String getNodeName() {
@@ -127,7 +127,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Sets the user-given name of the node.
-        * 
+        *
         * @param name
         *            The name of the node
         */
@@ -138,7 +138,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Returns the hostname of the node.
-        * 
+        *
         * @return The hostname of the node
         */
        public String getNodeHostname() {
@@ -147,7 +147,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Sets the hostname of the node.
-        * 
+        *
         * @param hostname
         *            The hostname of the node
         */
@@ -158,7 +158,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Returns the FCP port number of the node.
-        * 
+        *
         * @return The FCP port number of the node
         */
        public int getNodePort() {
@@ -167,7 +167,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Sets the FCP port number of the node.
-        * 
+        *
         * @param port
         *            The FCP port number of the node
         */
@@ -178,7 +178,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Returns whether the node is on the same machine as jSite.
-        * 
+        *
         * @return <code>true</code> if the node is on the same machine as jSite,
         *         <code>false</code> otherwise
         */
@@ -188,7 +188,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Sets whether the node is on the same machine as jSite.
-        * 
+        *
         * @param sameMachine
         *            <code>true</code> if the node is on the same machine as
         *            jSite, <code>false</code> otherwise
@@ -200,7 +200,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Returns whether the dialog was cancelled.
-        * 
+        *
         * @return <code>true</code> if the dialog was cancelled,
         *         <code>false</code> if the user clicked “okay”
         */
@@ -266,18 +266,20 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
                nameTextField = new JTextField();
                contentPanel.add(nameLabel = new I18nLabel("editNodeDialog.label.name", nameTextField), new GridBagConstraints(0, 0, 1, 1, 0, 0, GridBagConstraints.LINE_END, GridBagConstraints.NONE, new Insets(0, 0, 0, 0), 0, 0));
-               contentPanel.add(nameTextField, new GridBagConstraints(1, 0, 1, 1, 10, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(0, 12, 0, 0), 0, 0));
+               contentPanel.add(nameTextField, new GridBagConstraints(1, 0, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(0, 12, 0, 0), 0, 0));
 
                hostnameTextField = new JTextField();
                contentPanel.add(hostnameLabel = new I18nLabel("editNodeDialog.label.hostname", hostnameTextField), new GridBagConstraints(0, 1, 1, 1, 0, 0, GridBagConstraints.LINE_END, GridBagConstraints.NONE, new Insets(12, 0, 0, 0), 0, 0));
-               contentPanel.add(hostnameTextField, new GridBagConstraints(1, 1, 1, 1, 10, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(12, 12, 0, 0), 0, 0));
+               contentPanel.add(hostnameTextField, new GridBagConstraints(1, 1, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(12, 12, 0, 0), 0, 0));
 
                portTextField = new JTextField();
                contentPanel.add(portLabel = new I18nLabel("editNodeDialog.label.port", portTextField), new GridBagConstraints(0, 2, 1, 1, 0, 0, GridBagConstraints.LINE_END, GridBagConstraints.NONE, new Insets(12, 0, 0, 0), 0, 0));
-               contentPanel.add(portTextField, new GridBagConstraints(1, 2, 1, 1, 10, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(12, 12, 0, 0), 0, 0));
+               contentPanel.add(portTextField, new GridBagConstraints(1, 2, 1, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.HORIZONTAL, new Insets(12, 12, 0, 0), 0, 0));
 
                sameMachineCheckBox = new JCheckBox(sameMachineAction);
-               contentPanel.add(sameMachineCheckBox, new GridBagConstraints(0, 3, 2, 1, 1, 1, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(12, 0, 0, 0), 0, 0));
+               contentPanel.add(sameMachineCheckBox, new GridBagConstraints(0, 3, 2, 1, 1.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(12, 0, 0, 0), 0, 0));
+
+               contentPanel.add(new JPanel(), new GridBagConstraints(0, 4, 2, 1, 1.0, 1.0, GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0), 0, 0));
        }
 
        //
@@ -286,7 +288,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Checks the name textfield for valid input.
-        * 
+        *
         * @return <code>true</code> if the name textfield seem okay,
         *         <code>false</code> if there is an error
         */
@@ -296,7 +298,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
 
        /**
         * Verifies the hostname textfield by resolving the given name.
-        * 
+        *
         * @return <code>true</code> if the hostname is not empty and can be
         *         resolved, <code>false</code> otherwise
         */
@@ -315,7 +317,7 @@ public class EditNodeDialog extends JDialog implements I18nable {
        /**
         * Verifies that the port number is numeric and in the range from
         * <code>0</code> to <code>65535</code>.
-        * 
+        *
         * @return <code>true</code> if the port number is okay,
         *         <code>false</code> otherwise
         */