Package betterBankingGUImaven
Class Main_GUI
Object
Main_GUI
- All Implemented Interfaces:
ActionListener
,EventListener
public class Main_GUI
extends Object
implements ActionListener
This method displays a welcome message to the user, and allows
them to navigate from the main menu of the BetterBanking software.
- Version:
- 1.0
- Author:
- Tristan Parry
-
Constructor Summary
Constructors Constructor Description Main_GUI()
This constructor creates a GUI for the Main method of the BetterBanking software. -
Method Summary
Modifier and Type Method Description void
actionPerformed(ActionEvent ae)
This method accepts user input to create/login to a BetterBanking Client.static void
main(String[] args)
This method runs the GUI for the Main_GUI class, by instantiating/running a Main_GUI window object.Methods inherited from class Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Main_GUI
public Main_GUI()This constructor creates a GUI for the Main method of the BetterBanking software.
-
-
Method Details
-
actionPerformed
public void actionPerformed(ActionEvent ae)This method accepts user input to create/login to a BetterBanking Client.- Specified by:
actionPerformed
in interfaceActionListener
-
main
public static void main(String[] args)This method runs the GUI for the Main_GUI class, by instantiating/running a Main_GUI window object.- Parameters:
args
- String[] arguments passed as part of execution
-