import javax.swing.JPanel;
import javax.swing.JComboBox;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class TSimObjectChooser extends SimObjectChooser {
    // OVERVIEW: SimObjectChooser manipulates the interface for selecting objects
    //    and maintains state for the current object type.  
    //
    // When clicking on a spot on the grid, it will be set to this class.
    // Rep:

    private Class selectedClass; 
   
    TSimObjectChooser ()
	// EFFECT: Initializes this to a SimObjectChooser with no classes.
    {
	selectedClass = null;
        
//	combolist.addActionListener 
//	    (new ActionListener () {
//		    public void actionPerformed (ActionEvent e) {
//			JComboBox cb = (JComboBox) e.getSource ();
//			String classname = (String) cb.getSelectedItem ();
//			setSelectedClass (classname);
//		    }
//		}
//	     );
//
//	add (combolist);
    }

}