Me he iniciado hoy, a si que no me pidais maravillas...xD
Lo más lejos que he llegado es crear un formulario con un ActionListener que cuando le das a una opción te manda a otro método que cambia el contenido del frame principal, mainScreen.
Bueno ya me direis, muchas gracias!
Código:
public static void retrieve() { JPanel panel = new JPanel(); panel.setLayout(new GridLayout(3,1)); JTextField name = new JTextField(); JLabel titulo = new JLabel("Inserte el nombre del elemento a obtener."); titulo.setHorizontalAlignment(0); JButton ok = new JButton("OK"); panel.add(titulo); panel.add(name); panel.add(ok); mainScreen.getContentPane().add(panel); mainScreen.setVisible(true);