Instantiate a non-default orderprocessor object

Assignment Help JAVA Programming
Reference no: EM131565690

Program Specifications
This is your first ever program using object oriented methodology. In this assignment you will need to instantiate (creat*) object(s) and invoke their instance methods to perform different tasks. The program is to keep track of customer orders and to creat* reports as needed.
At minimum you will need several objects to be instantiated throughout the program such as:
An OrderProcessor object
Order objects
Let's get to class design now.

Class Design:
class <your choice of name>: this class simply contains the public static main method just as what we've been programming so far in the first four assignments. You must select a descriptive name for the class based on what the program is set out to do. There will be no constructor or any instance field should be defined for this class. Sometimes people call it the "Driver" class which is the starting point of your program. Read thru the specs you will know what the main method is supposed to do. You will be amazed as to how simplified it is now for the code inside the main method.

class OrderProcessor: maintain a list of Order objects (array of Order objects)
Public static constant integer representing the <size> of the array of Order objects and set it to 32
Private instance fields:Company name
Company web site (www.xyz.com (Links to an external site.)

Links to an external site.
for example)
A reference to an array of Order objects (namely orderList)
Order count (the actual number of Order objects to be processed)
Public constructors:
Default constructor: set order count to 0. Creat* an array of <size> references to Objects. HINT: orderList = new ........... // step 2 in array creation
Non-default constructor: take a String for company name and a String for company web site (must set order count to 0 similar to default constructor). Creat* an array of <size> references to Objects
Public instance methods:
Accessor/mutator for company name, company web site, and order count
init: Use a for loop similar to the LoadVehicle function in assignment #4 to randomly generate data for 8 Orders. An Order has the following required information: customer name, product name, product quantity, Order date, and price. See the class Order specs in the next section for more information. For example Order #1 is from customer James Anderson (customer name) which orders iPhone 7 (product name), 5 of those (product quantity), Order date is March 6, and unit price of $859.95
Declare an array of Strings (size=8) for customer names and manually initialize the array with products of your choice
Declare an array of Strings (size=8) for product names and manually initialize the array with names of your choice
Randomly generate a Product quantity for the order (values from 1-10)
Randomly generate an order day (1-30 for the month of March)
Randomly generate product unit price between (LO:100.00-HIGH: 1000.00)
Now instantiate an Order object using the Order's default constructor. Next call the mutators in Order object to properly initialize the current Order element: customer name , product name, quantity, order date (of March, 2017), unit price. An example of this setting is: orderList[i].setCustomerName (nameList[i]);
NOTE: don't forget to update the order count instance field to 8
addOrder: ask user input for a new Order with all needed Order info and add it to the end of the array. Must use non-default constructor when instantiating the Order object. Update order count as needed. Note if the array is full you should output and error message and do not add the new Order.
reportOrderDetails: list all orders with a nice format as follows. Must use the new for loop syntax to display one Order at a time. Must check for null references before output the Order's info.
Company: Web-site:
Customer Product Quantity Unit Price Order date Total cost

class Order: represent customer order information
Private instance fields:customer name
product name
unit price
quantity
order date (03/xx/2017)
Public constructors:Default constructor: set name to "John Doe", product to "Unknown", price to 0.0, quantity to 0, date to 03/01/2017
Non-default constructor taking customer name, product name, price, quantity, and date as parameters
Public instance methods:
Accessor/mutator for all instance fields
Behavioral methods:orderCost: return unit price * product quantity

Implementation/Coding Requirements
Must follow Google style for naming convention for class names, variable names
constructors, instance fields, static fields, instance methods must be declared with the correct access specifiers (private or public). No specifier for those will get heavy points deduction

Main Program
Instantiate a non-default OrderProcessor object (manually provide parameters for the constructor)
Invoke init method for the object
Invoke reportOrderDetails method
Use a loop to add three more Orders to the OrderProcessor (data from user input using BufferedReader or Scanner). Implement a public static method for the below (then called by main) passing in the OrderProcessor object and using GUI for user input will get 5 points extra credit.
for (int count =0; count <3; count++) {
// invoke addOrder method from OrderProcessor object
}
Invoke reportOrderDetails again to verify if the new orders have been added correctly

Testing: Run your program 2 times. Verify the report is correct each time especially after you add three more orders to the OrderProcessor. Submit both outputs.

Reference no: EM131565690

Questions Cloud

Provide a definition of what an ethical leader is : Provide a definition of what an ethical leader is. Give an example of an ethical leader and describe why this person fits the definition.
What are team serial killers : What are team serial killers. Do you think the Wests' fit this definition
List two special interest groups that strongly disagree : List two special interest groups that strongly disagree with each other when it comes to end-of-life decisions.
Define job satisfaction with regard to morale : What are the statistics within each type of organization. What accounts for these statistics and why
Instantiate a non-default orderprocessor object : Assignment you will need to instantiate (creat*) object(s) and invoke their instance methods to perform different tasks. The program is to keep track
What is the firm net operating income and net income : The Allen Corporation had sales in 2013 of$ 67million, total assets of$ 40million, and total liabilities of$ 16million. The interest rate on the company's debt.
Create some data that you can use for a pivot table : MIS 3310 - Excel Project. Create some data that you can use for a Pivot Table. Then create a pivot table and list 4 or 5 questions
Identify the various problem solving systems : How has policy impacted health care? Be sure to reference the information you found and be detailed in your explanation.
Research current social policies designed to improve : Describe one of these policies in detail, including criteria necessary to qualify for benefits and the benefits provided by this policy.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd