Consider the following code segment public class ClickListen…

Consider the following code segment public class ClickListener implements ActionListener{    public void actionPerformed(ActionEvent event)    {        System.out.println(“Processing”);        //Start processing        //process_method();        label.setText(“Processed”);    } } Which of the following design pattern is implemented in the above code segment