import javax.swing.*;

public class DictApp extends JFrame {
    public DictApp(String title, String words) {
		super(title);		
		Dictionary dict = new Dictionary(words);
		LookupPanel panel = new LookupPanel(dict); 
		getContentPane().add("Center", panel);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		pack();
		show();
    }
	
    public static void main (String argv[]) {
		new DictApp("Super Dictionary",  "mywords.txt");
    }
}