Aktienhandel #4

Merged
Denys Konovalov merged 22 commits from ibartkowski/info-java:main into main 2024-10-18 18:21:55 +02:00
9 changed files with 2 additions and 1 deletions
Showing only changes of commit 2694e7b7b0 - Show all commits

BIN
Technikladen/Client.class Normal file

Binary file not shown.

BIN
Technikladen/Order.class Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Technikladen/Product.class Normal file

Binary file not shown.

Binary file not shown.

@ -3,7 +3,7 @@ import java.util.ArrayList;
public class StorageManager { public class StorageManager {
private ArrayList<Product> storageProducts; private ArrayList<Product> storageProducts;
public StorageManager() { public StorageManager() {
this.storageProducts = new ArrayList<Product>; this.storageProducts = new ArrayList<Product>();
} }
public void addProduct(Product product) { public void addProduct(Product product) {
this.storageProducts.add(product); this.storageProducts.add(product);

Binary file not shown.

@ -1,4 +1,5 @@
import java.util.Scanner; import java.util.Scanner;
import java.util.ArrayList;
public class TechStore { public class TechStore {
public static void p(String input) { public static void p(String input) {