Or in your case since you have a button you could define it like so:
PHP Code:
public void actionPerformed(ActionEvent event){
if(event.getSource() instanceof Button){
Button clickedButton = (Button) event.getSource();
if(clickedButton == goButton){
//Action to perform when go button clicked
}
}
}