Here you can find the source of createFieldWithLabel(String label, JTextField textField)
public static JPanel createFieldWithLabel(String label, JTextField textField)
//package com.java2s; //License from project: Open Source License import javax.swing.*; import java.awt.*; public class Main { public static JPanel createFieldWithLabel(String label, JTextField textField) { JPanel p = new JPanel(new BorderLayout()); textField.setMinimumSize(new Dimension(500, 50)); p.add(new JLabel(label), BorderLayout.WEST); p.add(textField, BorderLayout.CENTER); return p; }//from www. ja v a2s .co m }