public static void main(String[] args) {
File f = new File("/Users/will/Documents/algorithm-tokenization.txt");
Yoshikoder yk = new Yoshikoder();
yk.show();
ImportDocumentPanel panel = new ImportDocumentPanel(yk, f);
JOptionPane pane = new JOptionPane(panel, JOptionPane.PLAIN_MESSAGE);
JDialog dia = pane.createDialog(yk, "Import");
dia.show();
}