package _swing;import javax.swing.*;import java.awt.*;/** * 배치관리자 - FlowLayout (컴포넌트들을 수평, 수직으로 배치) * */public class MyComponents extends JFrame { private JButton button; private JLabel label; private JTextField textField; private JPasswordField passwordField; private JCheckBox checkBox; public MyComponents() { initData(); setInitLayout(); } private void ini..