summaryrefslogtreecommitdiff
path: root/prototypes/miglayout/net/miginfocom/examples/Example01.java
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/miglayout/net/miginfocom/examples/Example01.java')
-rw-r--r--prototypes/miglayout/net/miginfocom/examples/Example01.java86
1 files changed, 43 insertions, 43 deletions
diff --git a/prototypes/miglayout/net/miginfocom/examples/Example01.java b/prototypes/miglayout/net/miginfocom/examples/Example01.java
index c67d935c..37f19640 100644
--- a/prototypes/miglayout/net/miginfocom/examples/Example01.java
+++ b/prototypes/miglayout/net/miginfocom/examples/Example01.java
@@ -1,43 +1,43 @@
-package net.miginfocom.examples;
-
-import net.miginfocom.swing.MigLayout;
-
-import javax.swing.*;
-
-/**
- */
-public class Example01
-{
- private static JPanel createPanel()
- {
- JPanel panel = new JPanel(new MigLayout());
-
- panel.add(new JLabel("First Name"));
- panel.add(new JTextField(15));
- panel.add(new JLabel("Surname"), "gap unrelated"); // Unrelated size is resolved per platform
- panel.add(new JTextField(15), "wrap"); // Wraps to the next row
- panel.add(new JLabel("Address"));
- panel.add(new JTextField(), "span, growx"); // Spans cells in row and grows to fit that
-
- return panel;
- }
-
- public static void main(String[] args)
- {
- SwingUtilities.invokeLater(new Runnable() {
- public void run() {
- try {
- UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
- } catch (Exception ex) {
- ex.printStackTrace();
- }
-
- JFrame frame = new JFrame("Example 01");
- frame.getContentPane().add(createPanel());
- frame.pack();
- frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
- frame.setVisible(true);
- }
- });
- }
-}
+package net.miginfocom.examples;
+
+import net.miginfocom.swing.MigLayout;
+
+import javax.swing.*;
+
+/**
+ */
+public class Example01
+{
+ private static JPanel createPanel()
+ {
+ JPanel panel = new JPanel(new MigLayout());
+
+ panel.add(new JLabel("First Name"));
+ panel.add(new JTextField(15));
+ panel.add(new JLabel("Surname"), "gap unrelated"); // Unrelated size is resolved per platform
+ panel.add(new JTextField(15), "wrap"); // Wraps to the next row
+ panel.add(new JLabel("Address"));
+ panel.add(new JTextField(), "span, growx"); // Spans cells in row and grows to fit that
+
+ return panel;
+ }
+
+ public static void main(String[] args)
+ {
+ SwingUtilities.invokeLater(new Runnable() {
+ public void run() {
+ try {
+ UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
+ } catch (Exception ex) {
+ ex.printStackTrace();
+ }
+
+ JFrame frame = new JFrame("Example 01");
+ frame.getContentPane().add(createPanel());
+ frame.pack();
+ frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
+ frame.setVisible(true);
+ }
+ });
+ }
+}