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

  Information from the user and prints a payroll statement

Write a program that accepts the following information from the user and prints a payroll statement

  How does java support the concept of encapsulation

How does Java support the concept of encapsulation? Describe the difference between an object and a class. What is the difference between the contents of a Java variable of a primitive type and a Java variable of a class type?

  Java final and finalize

Describe one situation in which you would want to mark a class final, and another in which you would want a final method but not a final class.

  What will be displayed by the method call recurse

What will be displayed by the method call recurse(1234)? Which of the following problems would be a good candidate for using a stack? Which of the following is correct to sort the elements in a list aList?

  Which is the best character high value

When updating a master file with data from a transaction file, what should happen for an addition record when a match is found in the master file?

  Write a class that implements an ordered list of strings

In this problem you will write a class that implements an ordered list of Strings.

  Method level comment

What type of information should be included in a method level comment?

  Declare another television object called portable

Add to the comment header as indicated at the top of the program.

  Find and display the max value and the index of the max

Find and display the max value and the index of this max. Display the Even elements. Sorts and displays the numbers from lowest to highest using Arrays.sort() method from java.util.Arrays class.

  Determines the surface area and volume of a hemisphere

Write an application that reads determines the surface area and volume of a hemisphere and then calculates the radius given a surface area and volume.The first step is to read in the radius from the users and then calculate the surface area and vo..

  Small computer system interface-standard computer disk

How many primary drive partitions are supported on computers that still conform to the standard established by MS-DOS? How many total partitions can a standard computer disk [Intergrated Drive Electronics (IDE)/Serial Advanced Technology Attachment (..

  Create a web page that displays the default information

CSCI 3300 Assignment: Create a web page that displays the default information. The initial page and related outputs should look like the examples shown below.

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