You are required to develop a WAREHOUSE MANAGEMENT software. This Java-based application has 2 menu items. One for adding and removing products, as shown in Figure 1. Another one for searching a product, as shown in Figure 1. You can store the data of products in a text file, or implement Serializable interface, or save an XML/JSON object. When a user adds a new product, the amount of this product is added to the current amount of the same product. When a user removes a product by inputting product name and clicking on Remove button, the amount of this product is decreased by 1. If the amount of a product is zero, this product is removed out of the database. You are free to re- design the graphical user interface, but the functionality of the application has to be kept unchanged. Product Name Product List Amount 3 Description 1. Small Chair 2. Big Chair 3. Table A Add Remove FIGURE 1. GUI for adding/removing Products Product Name Product A Search Amount 5 Description This is a sample description FIGURE 2. GUI for searching a product Show transcribed image text You are required to develop a WAREHOUSE MANAGEMENT software. This Java-based application has 2 menu items. One for adding and removing products, as shown in Figure 1. Another one for searching a product, as shown in Figure 1. You can store the data of products in a text file, or implement Serializable interface, or save an XML/JSON object. When a user adds a new product, the amount of this product is added to the current amount of the same product. When a user removes a product by inputting product name and clicking on Remove button, the amount of this product is decreased by 1. If the amount of a product is zero, this product is removed out of the database. You are free to re- design the graphical user interface, but the functionality of the application has to be kept unchanged. Product Name Product List Amount 3 Description 1. Small Chair 2. Big Chair 3. Table A Add Remove FIGURE 1. GUI for adding/removing Products Product Name Product A Search Amount 5 Description This is a sample description FIGURE 2. GUI for searching a product
Expert Answer
Answer to You are required to develop a WAREHOUSE MANAGEMENT software. This Java-based application has 2 menu items. One for addin…