Rev 3662 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
/*
Sketch Elements: Chemistry molecular diagram drawing tool.
(c) 2005 Dr. Alex M. Clark
Released as GNUware, under the Gnu Public License (GPL)
See www.gnu.org for details.
*/
package WIMSchem;
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
{
public void init()
{
openbutton=
new JButton("Open WIMSchem");
add(openbutton);
openbutton.addActionListener(this);
}
{
if (e.getSource()==openbutton)
{
MainWindow mw=new MainWindow(null,false);
mw.setVisible(true);
}
}
{
return "WIMSchem: Applet version of chemistry\nmolecular diagram drawing tool.";
}
}