View Javadoc
1   package com.starphoenixmedia.candle_pos.util;
2   
3   import java.awt.event.ActionEvent;
4   import java.awt.event.ActionListener;
5   
6   /**
7    *
8    * @author jlhawkwell
9    */
10  public class SuperListener implements ActionListener
11  {
12  	@Override public void actionPerformed(ActionEvent e) { }
13  	public void setup(String data) {}
14  
15  }