
import java.awt.Label;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.Serializable;

public class ActionLabel extends Label
	implements ActionListener, Serializable {

	public ActionLabel() {
		setBackground( Color.white );
	}
	public void actionPerformed( ActionEvent ae ) {
		setText( ae.getActionCommand() );
	}
}

