NullPointerException but can't find error
Error I am receiving
java.lang.NullPointerException
at buttons.PlayPause.getState(PlayPause.java:36)
at net.KrayaProcessDash.Events.actionPerformed(Events.java:29)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
at java.awt.Component.processMouseEvent(Component.java:5100)
at java.awt.Component.processEvent(Component.java:4897)
at java.awt.Container.processEvent(Container.java:1569)
at java.awt.Component.dispatchEventImpl(Component.java:3615)
at java.awt.Container.dispatchEventImpl(Container.java:1627)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
at java.awt.Container.dispatchEventImpl(Container.java:1613)
at java.awt.Window.dispatchEventImpl(Window.java:1606)
at java.awt.Component.dispatchEvent(Component.java:3477)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
Code it warning about
PlayPause.java
public int getState(int actualstate) {
if(actualstate == PLAY_STATE){
krayaprocess.stopButton.setVisible(false);
krayaprocess.startButton.setVisible(true);
}else{
krayaprocess.stopButton.setVisible(true);
krayaprocess.startButton.setVisible(false);
}
}
Events.java
if (sel == "Exit") {
System.exit(1);
}
else if (sel == "Hierrarchy") {
TreeMap hierMenu = new TreeMap();
hierMenu.setVisible(true);
}
else if (sel=="Play"){
stopwatch.start();
playpause.STATE=1;
playpause.getState(1);
}
else if (sel =="Stop") {
stopwatch.stop();
playpause.STATE=0;
stopwatch.reset();
playpause.getState(0);
}
else if (sel=="About") {
}
I am trying to get it to hide the play or pause button when i click the other one but it keep giving me that error
Thanks

