Product ordering system and design

Assignment Help JAVA Programming
Reference no: EM13762822

Product Ordering System and Design Document:

In the first Individual Project, you will be laying the groundwork for all of the work in this course. You will do the following:
Select a company and one of its products for which you will be creating an online ordering system. Get your instructor's approval for your selections.

Install the required software.
Install the provided skeleton ordering system.
Customize the skeleton ordering system to meet your requirements.
Construct the shell document that will be your ordering system description.
Describe your ordering system using Unified Modeling Language (UML) Use Case Diagrams.

Now that you have a better understanding of object-oriented programming, you will use this approach to develop your interactive Java program that supports a company of your choosing to sell products online.

In this Individual Project, you will represent the design for your application using the UML diagramming techniques called use case diagrams. Later in the course, you will use another UML diagram to help design and describe your program, a class diagram.
You will also be setting up the foundation design document outline that you will add to each week. The combined Individual Project assignments will be your final Key Assignment design document deliverable.

Throughout this course, you will also be working on several aspects of this application that will result in the final version of a functioning interactive Java program. Additional information and the deliverables for each Individual Project will be provided in the assignment description for this project.

Project Selection

The first step will be to select a company and product(s) that are real or fictitious as the target for your ordering application. This project will be used as the basis for each of the assignments throughout the course, and it should conform to the following guidelines:
Nontrivial: The selected project company and products it sells should be realistic and only a few products (10 or fewer) should be described.

Domain knowledge: You should be familiar enough with the company and the products that it sells.

Select a company and products that fit these requirements, and submit your proposal to your instructor before proceeding further with the assignments in the course. You should seek approval within the first few days of the course. Your instructor will tell you how to submit this proposal and what notification will be given for project approval. Your proposal must include the following:

The name of the company
A description of the products
One specific product that you will use initially for your ordering system
The name of the product, its possible colors, and the range of costs

Assignment Details

1. Select a company and one of its products (see above).
2. Install the required software: Java and Eclipse.

You will need to download and install the following free software packages for this course:

The Java Development Kit (JDK)

The Eclipse integrated development environment (IDE). You probably will need administrator rights on your computer to do the installations.

Click here to download instructions on how to install the JDK and the Eclipse IDE.

3. Install the provided skeleton ordering system.

Now you will download and install the skeleton of a pizza ordering system. You will use this as the base for the ordering system that you will create for this course. Right-click on this link: PizzasRUsPhase1.java and use Save or Save As to download and save this file on your hard drive. The exact procedure may be slightly different depending upon your browser and your browser settings. Be sure to note where you save this file on your hard drive. Complete the following:

Launch Eclipse.

Click File > New > Java Project. Type "PizzasRUsPhase1" as the project name.
Click Finish.

In the package explorer window on the left side of the Java workbench, click the tiny triangle to the left of "PizzasRUsPhase1" to expand it. You should now see two items beneath PizzasRUsPhase1: a "src" folder and the "JRE System Library."

In the Eclipse menu bar at the top-right corner of the workbench, click the Restore Down button and resize the Eclipse workbench so that it occupies about half of your desktop.

Open the folder where you saved your "PizzasRUsPhase1.java" file. If it is saved on the desktop, then you are already ready.

Make certain that you can see both the Java file and the "src" folder simultaneously.

Now, click-drag the "PizzasRUsPhase1.java" file and drop it onto the "src" folder. A file operation dialog will appear.

Select "copy files" and then click OK. Restore Eclipse to the full screen.
Click on the tiny triangle to the left of "src" to expand it.
Click on the tiny triangle to the left of "(default package)" to expand it.
Double-click on "PizzasRUsPhase1.java" to display it in the editing window.

Run the PizzasRUs ordering application by clicking Run > Run or by clicking on the Run shortcut button (the largest green circle containing a white triangle). You also can run the program by clicking on Debug (just to the left of Run). You should run the program a few times, typing in different responses and watching the responses.

4. Customize the skeleton ordering system to meet your requirements.

You need to create a version of the ordering system that is customized for your particular company and product. This will be the Java program that you will submit for this week's Individual Project.

Start Eclipse.

Click the X to the right of "PizzasRUsPhase1.java" in the main editing window to close the display of the program.
Click File > New > New Project to create a new Java project. This will be your customized version of the ordering system.
Type the name of your company and Phase1 for the project name. You must spell the name as a single word with no punctuation (e.g., "PizzasRUsPhase1" or "MyCustomCarsPhase1").

Click Finish.

In the Package Explorer, click the triangles to expand the PizzasRUsPhase1 program to the point where you can see the "PizzasRUsPhase1.java" file.

Click the triangle for your new project so that you can see the "src" folder.
Click on "PizzasRUsPhase1.java" and press Ctrl + C to copy the file.
Click on the new "src" folder to select it. Press Ctrl + V to paste the Java source file into the "src" folder.
Click on the triangle to the left of this "src" folder to expand it.
Click on "(Default package)" to expand it.
Right-click on the newly pasted "PizzasRUsPhase1.java" file.
Select Refactor > Rename.

In "New Name," type your new project name.

Use the identical name that you selected in the previous paragraph.
Click Finish.
Click Finish again.
Click the tiny triangle to the left of your newly created customized program to view it in the editing window.
Change all instances of "PizzasRUs" to the name of your company.
Run your program.

This first time you should see a "Save and Launch" dialog box. Click the "Always save resources before launching" box, and then click OK. Your program should run.

If an "Errors in Workspace" message is displayed, it means that you have made a typographical error.
Cancel the dialog.

Find each red X on the left side of the editing window from the top-down, and correct each mistake.

Once you have corrected all of the errors, all of the red Xs will have disappeared and you will be able to run your program.
Continue the customization process by updating other portions of the skeleton appropriately. For example, you need to add your name as an author and today's date. You may need to update a few other portions of the program, such as changing or removing the message about the order being ready in less than 10 minutes. Be certain to test your program by running it after each change to the code.

You will need to make one addition to the program to request the color of the product that is being ordered. If your product does not have a color property, you may substitute any similar attribute that can be stored in a string. You will need to add a couple of string variables for this information. Follow the examples that already are in the program. You will need to prompt the user for a color. You might use a message such as "What color product do you wish to order?" You will need to display the name of the selected color just after the "Your return customer status is" message. Again, follow the examples that already are in the program. You will need to modify the greetingOutputMsg assignment so that it includes the name of the selected color.

Open an empty Word document. Run your program, and perform a screen capture of each dialog just after you have entered any required data. Paste these screen captures one after another into the Word document and save your document. You will need these screen captures for the shell document that you will create.

5. Construct the shell document that will be your ordering system description.

You need to create the shell document for the final Key Assignment project design document deliverable that you will be working on throughout the course. As you proceed through each project phase, you will add content to each section of the document, gradually completing the final project design document.
Design document shell

Use Word
Title page
Course number and name
Project name
Student name
Date
Table of contents (TOC)
Use an autogenerated TOC.
It should be on a separate page.

Be sure to update the fields of the TOC so that it is up-to-date before submitting your project.
Section headings (create each heading on a new page with TBD as the content, except for sections listed under "New content" below)

Week 1: Project Description or Overview
Week 1: Java Fundamentals
Week 2: Java Control Structures
Week 3: Error Handling and File Input or Output
Week 4: Object-Oriented Techniques
Week 5: Inheritance and Polymorphism
References

6. New content for Week 1.

Project Description or Overview

Give a brief description of the company (it can be hypothetical). Include a list and a description of the products (no more than 5) and their potential attributes such as size, color, and so forth.

Material can be taken from the approved proposal that was submitted to your instructor.
Be sure that your project is approved by your instructor.
Describe your ordering system using UML use case diagrams.

Use case diagrams

Create a use case diagram to represent what your online ordering process will look like. Be sure to include the actors and the tasks for which they are responsible.

Place the use case diagram in the Project Description or Overview section of your document.

Include a narrative below the diagram to explain each of the interactions between the actors and tasks.

Actor symbol
Function symbol
Use case system

You may use any tool you wish to construct your UML diagrams. Word contains drawing capabilities that are perfectly adequate for this task. You can use Visio if you prefer, or PowerPoint is another option.

You may find it much easier, however, to use an application that is specifically designed for constructing UML diagrams. One of the best tools is Violet. Violet is as easy to use as Notepad, and it is free to use. Download Violet from this Web site. Select the .jar version rather than the .exe version. Place the .jar file anywhere on your computer that is convenient. Double-click the file and Violet will run. No installation is needed. You can also view a Quick Tour and a User Guide from the same Web site.

Week 1: Java Fundamentals

Once your Java ordering system is running and has been modified to reflect the ordering information for your selected product, run the program.

Perform a screen capture of each of the ordering system dialogs that are displayed during execution just after you have entered the requested information.

Do not capture your entire desktop; only capture the runtime dialogs.

Paste the sequence of dialogs into this section of your document with an appropriate title (e.g., "Capture of IP1 Runtime Output").

The output from running the skeleton program should look something like the following example. This example is only for a pizzeria ordering system with 5 dialog boxes that will display one at a time. This example uses "crust" rather than "color" for the additional customization attribute. Your output will have your selected company name and an additional attribute instead of the PizzasRUs ordering system.

Welcome Dialog
Name Request Dialog
Returning Customer Dialog
Crust Request Dialog
Confirmation Dialog

7. Name your document "yourname_IT110_IP1.doc."

8. Create a .zip file containing your project document (including screen captures) and your Java source file. Name your .zip file "yourname_IT110_IP1.zip."

Reference no: EM13762822

Questions Cloud

Issues on research methodology : Most physicians don't do research and medical school provides little training in research methodology.
Real listing for an auction of a commercial property : We have a real listing for an auction of a commercial property. It is 100% occupied and is 4,000 square feet with 500 additional square feet that can be finished in the attic. The property generates $5,112 a month and has 7 total units.
What is the purpose of permits related to event management : What is the purpose of permits related to event management? How do they impact an event? What kind of risk management procedures would you set in place for this event?
Bondholders to convert their debt to equity of the company : Why does a bankrupt firm under Chapter 11 generally require its bondholders to convert their debt to equity of the company after the reorganization?
Product ordering system and design : Product Ordering System and Design Document:Select a company and one of its products for which you will be creating an online ordering system. Get your instructor's approval for your selections
Indifferent between accepting the project and rejecting : A project that provides annual cash flows of $28,500 for nine years costs $138,000 today. If the required return is 8 percent, the NPV for the project is $_____ . If the required return is 20 percent, the NPV is $______. At a discount rate of ___perc..
Shawshank redemption : The name of the movie is ShawShank Redemption. Please look at the movie and find 3 people who have started enterprise like business, services and one more enterprise person.
Create an order application : Create an Order application that prompts the employee for the number of burgers, fries, and sodas and then display the total, the tax (6.5%), and the final cost.
Duties in an actual crime scene : What materials will you use to lift these molds from the ground.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Implement the application using a singly linked list

Implement the following application using a singly linked list. This application accepts from console and stores a list of 10 names of your friends in the singly linked list

  Create three classes for a customer

a travel manager and have a job of buying a travel package for a customer. You must create three classes for this programming challenge: Customer, Ticket, and TravelManagerDemo.

  Methods

Assignment describe the basic working of methods. How to write a method in java and how to call a method.

  Design an application to take and process a pizza order

Design an application to take and process a pizza order. The user should be able to make pizza order choices from list boxes, and the application should display the order price.

  Create a console-based application named multiplication

Create a console-based application named Multiplication whose main() method asks the user to input and then calls a method named MultiplicationTable(), which displays the results of multiplying the integers by each of the number 2 through 10

  Determine the example of a javascriptr framework in the

what is an example of a javascriptr framework? in the framework you have described what is an example of an application

  Using the following data definition classpublic class

using the following data definition classpublic class circle private int radiuspublic circleint r radius rpublic int

  Write a program that allows a user to enter a line of text

write a program that allows a user to enter a line of text counts number of words and number of vowels in the sentence

  Design and implement a sorting algorithm

Your task is to design and implement a sorting algorithm and running time grows as a linear function of the array

  Write a graphical user interface class

Write a graphical user interface class called SentenceCounterGUI. It should be able to manipulate the sentence of words and have the behaviour label.

  Make a row with different string names

How do you make a row with different string names and put a certain amount of space between each one?

  Write an application that displays a table of the pythagorea

Write an application that displays a table of the Pythagorean triples for side1, side2 and the hypotenuse, all no larger than 100.

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