I have the following working code with two buttons as event listeners.  One button to get and display a Panel panel1 and the other to get and display another Panel panel2 removing the existing displayed panel.  I created two actionPerformed methods for each button to carry out each other's tasks. I just want to make one to shorten the code but I don't know how to detect which button in a panel is displaying at compile time. Any help will be appreciated.
//Switching between panels (screens)
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ScreenDemo extends JFrame {
private JPanel panel1, panel2;
private JButton btn1, btn2;
JLabel label1 = new JLabel("Screen 1");
JLabel label2 = new JLabel("Screen 2");
public ScreenDemo() {
    createPanel(); //Created at Line 14
    addPanel(); //Created at Line 28
}
private void createPanel() {
    //Panel for first screen
    panel1 = new JPanel(new FlowLayout());
    btn1 = new JButton("Move to Screen 2");
    btn1.addActionListener(new addScreen1ButtonListener());
    //Panel for second screen
    panel2 = new JPanel(new FlowLayout());
    btn2 = new JButton("Move to Screen 1");
    btn2.addActionListener(new addScreen2ButtonListener());
}
private void addPanel() {
    panel1.add(label1);
    panel1.add(btn1);
    panel2.add(label2);
    panel2.add(btn2);
    add(panel1); //Add the first screen panel
}
class addScreen1ButtonListener implements ActionListener {
    public void actionPerformed(ActionEvent ae) {
        getContentPane().removeAll();
        getContentPane().add(panel2);
        repaint();
        printAll(getGraphics()); //Prints all content
    }
}
class addScreen2ButtonListener implements ActionListener {
    public void actionPerformed(ActionEvent ea) {
        getContentPane().removeAll();
        getContentPane().add(panel1);
        repaint();
        printAll(getGraphics()); //Prints all content
    }
}
public static void main(String[] args) {
    ScreenDemo screen = new ScreenDemo();
    screen.setTitle("Switching Screens");
    screen.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    screen.setSize(500, 500);
    screen.setVisible(true);
}
}