Here you can find the source of initLabelComponent(final JLabel label, final JTextField textField)
Parameter | Description |
---|---|
label | label |
textField | text field |
public static void initLabelComponent(final JLabel label, final JTextField textField)
//package com.java2s; //License from project: Open Source License import javax.swing.*; public class Main { /**//from w w w . j a v a2s. c o m * Initializes label with text field. * * @param label label * @param textField text field */ public static void initLabelComponent(final JLabel label, final JTextField textField) { label.setLabelFor(textField); label.setFocusable(false); } }