12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
-
-
-
- import javafx.application.Application;
- import javafx.scene.Parent;
- import javafx.scene.Scene;
- import javafx.scene.control.Button;
- import javafx.scene.control.TextArea;
- import javafx.scene.control.TextField;
- import javafx.scene.layout.VBox;
- import javafx.stage.Stage;
- import javafx.scene.layout.FlowPane;
-
- /**
- * @author ZipCodeWilmington
- */
- public class CashMachineApp extends Application {
-
- private TextField field = new TextField();
- private CashMachine cashMachine = new CashMachine(new Bank());
-
- private Parent createContent() {
- VBox vbox = new VBox(10);
- vbox.setPrefSize(600, 600);
-
- TextArea areaInfo = new TextArea();
-
- Button btnSubmit = new Button("Set Account ID");
- btnSubmit.setOnAction(e -> {
- int id = Integer.parseInt(field.getText());
- cashMachine.login(id);
-
- areaInfo.setText(cashMachine.toString());
- });
-
- Button btnDeposit = new Button("Deposit");
- btnDeposit.setOnAction(e -> {
- int amount = Integer.parseInt(field.getText());
- cashMachine.deposit(amount);
-
- areaInfo.setText(cashMachine.toString());
- });
-
- Button btnWithdraw = new Button("Withdraw");
- btnWithdraw.setOnAction(e -> {
- int amount = Integer.parseInt(field.getText());
- cashMachine.withdraw(amount);
-
- areaInfo.setText(cashMachine.toString());
- });
-
- Button btnExit = new Button("Exit");
- btnExit.setOnAction(e -> {
- cashMachine.exit();
-
- areaInfo.setText(cashMachine.toString());
- });
-
- FlowPane flowpane = new FlowPane();
-
- flowpane.getChildren().add(btnSubmit);
- flowpane.getChildren().add(btnDeposit);
- flowpane.getChildren().add(btnWithdraw);
- flowpane.getChildren().add(btnExit);
- vbox.getChildren().addAll(field, flowpane, areaInfo);
- return vbox;
- }
-
- @Override
- public void start(Stage stage) throws Exception {
- stage.setScene(new Scene(createContent()));
- stage.show();
- }
-
- public static void main(String[] args) {
- launch(args);
- }
- }
|