I have two java classes: Menu and PMotion. The Menu class contains a JButton as shown below. When this JButton is pressed, I want it to go to PMotion.java
How to achieve this?
Menu.java
public void actionPerformed(ActionEvent e) {
// Here I need to write the code which takes the user to PMotion.java
}