Package application.ui

Examples of application.ui.AboutWindow


 
  @Override
  public void actionPerformed(ActionEvent event) {
    System.out.println(event.getActionCommand());
    if (event.getActionCommand().equals("About")) {
      new AboutWindow();
    } else
    if (event.getActionCommand().equals("Create")) {
      if (db.exist()) {
        try {
          db.createTables();
View Full Code Here

TOP

Related Classes of application.ui.AboutWindow

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.