SlideShare a Scribd company logo
1 of 9
Phase 1 Individual Project
Deliverable Length:
8–10 total pages, including empty sections
Details:
Weekly tasks or assignments (Individual Projects) will be due
by Monday and late submissions will be assigned a late penalty
in accordance with the late penalty policy found in the syllabus.
NOTE: All submission posting times are based on midnight
Central Time.
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
Note:
To complete this step, you will need to go through the UML
tutorial in the M.U.S.E.
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."

More Related Content

Similar to Phase 1 Individual ProjectDeliverable Length8–10 total pages, i.docx

Assignment6~$signment6.docxAssignment6Assignment6.docxAs.docx
Assignment6~$signment6.docxAssignment6Assignment6.docxAs.docxAssignment6~$signment6.docxAssignment6Assignment6.docxAs.docx
Assignment6~$signment6.docxAssignment6Assignment6.docxAs.docx
ssuser562afc1
 
Chen's second test slides again
Chen's second test slides againChen's second test slides again
Chen's second test slides again
Hima Challa
 
A simple test paper from Chen
A simple test paper from ChenA simple test paper from Chen
A simple test paper from Chen
techweb08
 
Chen's second test slides
Chen's second test slidesChen's second test slides
Chen's second test slides
Hima Challa
 
A simple test paper from Chen
A simple test paper from ChenA simple test paper from Chen
A simple test paper from Chen
techweb08
 
A simple test paper from Chen
A simple test paper from ChenA simple test paper from Chen
A simple test paper from Chen
techweb08
 
Week 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docxWeek 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docx
estefana2345678
 
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdfPERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
arfa442827
 

Similar to Phase 1 Individual ProjectDeliverable Length8–10 total pages, i.docx (20)

Introduction to Android and Java.pptx
Introduction to Android and Java.pptxIntroduction to Android and Java.pptx
Introduction to Android and Java.pptx
 
Bcsl 013 solved-assignment-2019-20 without
Bcsl 013   solved-assignment-2019-20 withoutBcsl 013   solved-assignment-2019-20 without
Bcsl 013 solved-assignment-2019-20 without
 
Cis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programmingCis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programming
 
django
djangodjango
django
 
Part1
Part1Part1
Part1
 
CIS 406 Entire Course NEW
CIS 406 Entire Course NEWCIS 406 Entire Course NEW
CIS 406 Entire Course NEW
 
Assignment6~$signment6.docxAssignment6Assignment6.docxAs.docx
Assignment6~$signment6.docxAssignment6Assignment6.docxAs.docxAssignment6~$signment6.docxAssignment6Assignment6.docxAs.docx
Assignment6~$signment6.docxAssignment6Assignment6.docxAs.docx
 
Chen's second test slides again
Chen's second test slides againChen's second test slides again
Chen's second test slides again
 
A simple test paper from Chen
A simple test paper from ChenA simple test paper from Chen
A simple test paper from Chen
 
Chen's second test slides
Chen's second test slidesChen's second test slides
Chen's second test slides
 
A simple test paper from Chen
A simple test paper from ChenA simple test paper from Chen
A simple test paper from Chen
 
A simple test paper from Chen
A simple test paper from ChenA simple test paper from Chen
A simple test paper from Chen
 
Pega robotics best practices building solutions (1)
Pega robotics best practices   building solutions (1)Pega robotics best practices   building solutions (1)
Pega robotics best practices building solutions (1)
 
Pega Robotics Training @Phno: whatsapp @8142976573.
Pega Robotics Training @Phno: whatsapp @8142976573.Pega Robotics Training @Phno: whatsapp @8142976573.
Pega Robotics Training @Phno: whatsapp @8142976573.
 
How to use Project Template in Project Management App Orangescrum
How to use Project Template in Project Management App OrangescrumHow to use Project Template in Project Management App Orangescrum
How to use Project Template in Project Management App Orangescrum
 
Week 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docxWeek 4 Assignment - Software Development PlanScenario-Your team has be.docx
Week 4 Assignment - Software Development PlanScenario-Your team has be.docx
 
Vb introduction.
Vb introduction.Vb introduction.
Vb introduction.
 
Oracle ADF 11g Skinning Tutorial
Oracle ADF 11g Skinning TutorialOracle ADF 11g Skinning Tutorial
Oracle ADF 11g Skinning Tutorial
 
How to build your own Android App -Step by Step Guide
How to build your own Android App -Step by Step GuideHow to build your own Android App -Step by Step Guide
How to build your own Android App -Step by Step Guide
 
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdfPERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
PERTEMUAN 3_INTRO TO ANDROID APP DEV.pdf
 

More from rowthechang

Please dont waste my time unless you’re willing to do the work..docx
Please dont waste my time unless you’re willing to do the work..docxPlease dont waste my time unless you’re willing to do the work..docx
Please dont waste my time unless you’re willing to do the work..docx
rowthechang
 
Please do not respond in doing this assignment unless you can comp.docx
Please do not respond in doing this assignment unless you can comp.docxPlease do not respond in doing this assignment unless you can comp.docx
Please do not respond in doing this assignment unless you can comp.docx
rowthechang
 
Please do not plagiarism.I attached Ratio Formaula and Financial.docx
Please do not plagiarism.I attached Ratio Formaula and Financial.docxPlease do not plagiarism.I attached Ratio Formaula and Financial.docx
Please do not plagiarism.I attached Ratio Formaula and Financial.docx
rowthechang
 
Please do not duplicate APA format with  intext ciatationat leas.docx
Please do not duplicate APA format with  intext ciatationat leas.docxPlease do not duplicate APA format with  intext ciatationat leas.docx
Please do not duplicate APA format with  intext ciatationat leas.docx
rowthechang
 
Please do not delete anything from the template except for the words.docx
Please do not delete anything from the template except for the words.docxPlease do not delete anything from the template except for the words.docx
Please do not delete anything from the template except for the words.docx
rowthechang
 
please discuss your reactions to the concept of relationship rewards.docx
please discuss your reactions to the concept of relationship rewards.docxplease discuss your reactions to the concept of relationship rewards.docx
please discuss your reactions to the concept of relationship rewards.docx
rowthechang
 
Please complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docx
Please complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docxPlease complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docx
Please complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docx
rowthechang
 
Please complete the required federal individual income tax return fo.docx
Please complete the required federal individual income tax return fo.docxPlease complete the required federal individual income tax return fo.docx
Please complete the required federal individual income tax return fo.docx
rowthechang
 
please complete this homework and send me the answers by tonight..docx
please complete this homework and send me the answers by tonight..docxplease complete this homework and send me the answers by tonight..docx
please complete this homework and send me the answers by tonight..docx
rowthechang
 

More from rowthechang (20)

Please don’t waste my time you must have the book E.docx
Please don’t waste my time you must have the book E.docxPlease don’t waste my time you must have the book E.docx
Please don’t waste my time you must have the book E.docx
 
Please dont waste my time unless you’re willing to do the work..docx
Please dont waste my time unless you’re willing to do the work..docxPlease dont waste my time unless you’re willing to do the work..docx
Please dont waste my time unless you’re willing to do the work..docx
 
Please do not respond in doing this assignment unless you can comp.docx
Please do not respond in doing this assignment unless you can comp.docxPlease do not respond in doing this assignment unless you can comp.docx
Please do not respond in doing this assignment unless you can comp.docx
 
Please do not plagiarism.I attached Ratio Formaula and Financial.docx
Please do not plagiarism.I attached Ratio Formaula and Financial.docxPlease do not plagiarism.I attached Ratio Formaula and Financial.docx
Please do not plagiarism.I attached Ratio Formaula and Financial.docx
 
Please do not duplicate APA format with  intext ciatationat leas.docx
Please do not duplicate APA format with  intext ciatationat leas.docxPlease do not duplicate APA format with  intext ciatationat leas.docx
Please do not duplicate APA format with  intext ciatationat leas.docx
 
PLEASE DO MY WORKIntelligence Theory Presentation week 4De.docx
PLEASE DO MY WORKIntelligence Theory Presentation week 4De.docxPLEASE DO MY WORKIntelligence Theory Presentation week 4De.docx
PLEASE DO MY WORKIntelligence Theory Presentation week 4De.docx
 
Please do not delete anything from the template except for the words.docx
Please do not delete anything from the template except for the words.docxPlease do not delete anything from the template except for the words.docx
Please do not delete anything from the template except for the words.docx
 
Please do not try to be hired unless you have expertise in Governmen.docx
Please do not try to be hired unless you have expertise in Governmen.docxPlease do not try to be hired unless you have expertise in Governmen.docx
Please do not try to be hired unless you have expertise in Governmen.docx
 
Please discuss the interpersonal determinants of consumer behavior.docx
Please discuss the interpersonal determinants of consumer behavior.docxPlease discuss the interpersonal determinants of consumer behavior.docx
Please discuss the interpersonal determinants of consumer behavior.docx
 
Please describe the related techniques that regarding the performanc.docx
Please describe the related techniques that regarding the performanc.docxPlease describe the related techniques that regarding the performanc.docx
Please describe the related techniques that regarding the performanc.docx
 
please discuss your reactions to the concept of relationship rewards.docx
please discuss your reactions to the concept of relationship rewards.docxplease discuss your reactions to the concept of relationship rewards.docx
please discuss your reactions to the concept of relationship rewards.docx
 
please define·        InternetWorld Wide Web·        Trans.docx
please define·        InternetWorld Wide Web·        Trans.docxplease define·        InternetWorld Wide Web·        Trans.docx
please define·        InternetWorld Wide Web·        Trans.docx
 
Please create an outline of the work youve done so far.Your fir.docx
Please create an outline of the work youve done so far.Your fir.docxPlease create an outline of the work youve done so far.Your fir.docx
Please create an outline of the work youve done so far.Your fir.docx
 
Please complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docx
Please complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docxPlease complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docx
Please complete in APA Format. 3-6 Pages in lengthScenarioYou ha.docx
 
Please complete the below500 word paper on the below section to .docx
Please complete the below500 word paper on the below section to .docxPlease complete the below500 word paper on the below section to .docx
Please complete the below500 word paper on the below section to .docx
 
Please confirm access to course textbook Haight, J. M. (Ed.). (20.docx
Please confirm access to course textbook Haight, J. M. (Ed.). (20.docxPlease confirm access to course textbook Haight, J. M. (Ed.). (20.docx
Please confirm access to course textbook Haight, J. M. (Ed.). (20.docx
 
Please choose one of the following questions to answer 1. What .docx
Please choose one of the following questions to answer 1. What .docxPlease choose one of the following questions to answer 1. What .docx
Please choose one of the following questions to answer 1. What .docx
 
Please complete the required federal individual income tax return fo.docx
Please complete the required federal individual income tax return fo.docxPlease complete the required federal individual income tax return fo.docx
Please complete the required federal individual income tax return fo.docx
 
please complete this homework and send me the answers by tonight..docx
please complete this homework and send me the answers by tonight..docxplease complete this homework and send me the answers by tonight..docx
please complete this homework and send me the answers by tonight..docx
 
Please choose one of the following questions to answer1. What a.docx
Please choose one of the following questions to answer1. What a.docxPlease choose one of the following questions to answer1. What a.docx
Please choose one of the following questions to answer1. What a.docx
 

Recently uploaded

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Basic Intentional Injuries Health Education
Basic Intentional Injuries Health EducationBasic Intentional Injuries Health Education
Basic Intentional Injuries Health Education
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 

Phase 1 Individual ProjectDeliverable Length8–10 total pages, i.docx

  • 1. Phase 1 Individual Project Deliverable Length: 8–10 total pages, including empty sections Details: Weekly tasks or assignments (Individual Projects) will be due by Monday and late submissions will be assigned a late penalty in accordance with the late penalty policy found in the syllabus. NOTE: All submission posting times are based on midnight Central Time. 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
  • 2. 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.
  • 3. 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.
  • 4. 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.
  • 5. 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
  • 6. 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)
  • 7. 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 Note: To complete this step, you will need to go through the UML
  • 8. tutorial in the M.U.S.E. 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
  • 9. 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."