this.password = new JPasswordField(15);
panel.add(this.password);
this.add(panel);
JPanel buttons = new JPanel();
SendDialogController listener = new SendDialogController(this);
listener.setPanels(this.panels);
JButton send = new JButton("Send");
send.setActionCommand(Button.SEND);
send.addActionListener(listener);
buttons.add(send);
JButton cansel = new JButton("Cansel");