public add(){
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setLocationRelativeTo(null);
setSize(new Dimension(400, 200));
setTitle("Add");
setLayout(new FlowLayout());
JTextPane jTextPane = new JTextPane();
jTextPane.setPreferredSize(new Dimension(390, 100));
JButton jButton = new JButton("добавить");
jButton.setPreferredSize(new Dimension(200, 30));
add(jTextPane);
add(jButton);
setVisible(true);
}