/* * WordListPlotPopup.java * * Created on September 11, 2006, 11:38 AM */ package Current.popups.ListPlotter; import java.awt.*; import Current.manage.*; import Current.*; /** * * @author pat */ public class WordListPlotPopup extends Container { protected Manager M; protected WordList wl; protected WordListPlotCanvas wlpc; protected Status s; /** Creates a new instance of WordListPlotPopup */ public WordListPlotPopup(Manager M, WordList wl) { this.M=M; this.wl=wl; setBackground(Color.black); setFont(new Font("sanserif", Font.PLAIN, 12)); wlpc=new WordListPlotCanvas(this); s=new Status(wlpc); setLayout(new BorderLayout()); add(wlpc,"North"); add(s,"South"); } public void mcbCleanup() { //M.remove(this); } }