Package net.sourceforge.wampum.gui.accounts

Examples of net.sourceforge.wampum.gui.accounts.AccountsController


    budgetMenuItem.addActionListener(this);
    budgetButton.addActionListener(this);
   
    aboutMenuItem.addActionListener(this);
   
    new AccountsController(this.contentPanel);
   
    mainFrame.pack();
    swix.getRootComponent().setVisible(true);
  }
View Full Code Here


          XMLImportExportController.exportXML();
        } else if ("Import XML".equals( command )) {
          XMLImportExportController.importXML();
        } else if ("Accounts".equalsIgnoreCase(command)) {
          mainFrame.setTitle(GUIConstants.APPLICATION_NAME + " - Accounts");
          new AccountsController(this.contentPanel);
        } else if ("Payees".equalsIgnoreCase(command)) {
          mainFrame.setTitle(GUIConstants.APPLICATION_NAME + " - Payees");
          new PayeesController(this.contentPanel);
        } else if ("Budget".equalsIgnoreCase(command)) {
          mainFrame.setTitle(GUIConstants.APPLICATION_NAME + " - Budget");
View Full Code Here

TOP

Related Classes of net.sourceforge.wampum.gui.accounts.AccountsController

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.