SlideShare a Scribd company logo
Project3/build.xml
Builds, tests, and runs the project Project3.
Project3/manifest.mf
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build
Project3/nbproject/build-impl.xml
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Must set src.dir
Must set test.src.dir
Must set build.dir
Must set dist.dir
Must set build.classes.dir
Must set dist.javadoc.dir
Must set build.test.classes.dir
Must set build.test.results.dir
Must set build.classes.excludes
Must set dist.jar
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Must set javac.includes
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
No tests executed.
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Must set JVM to use for profiling in profiler.info.jvm
Must set profiler agent JVM arguments in
profiler.info.jvmargs.agent
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Project3build.xml      Builds, tests, and runs the project .docx
Must select some files in the IDE or set javac.includes
To run this application from the command line without
Ant, try:
java -jar "${dist.jar.resolved}"
Must select one file in the IDE or set run.class
Must select one file in the IDE or set run.class
Must select one file in the IDE or set debug.class
Must select one file in the IDE or set debug.class
Must set fix.includes
This target only works when run from inside the NetBeans
IDE.
Must select one file in the IDE or set profile.class
This target only works when run from inside the NetBeans
IDE.
This target only works when run from inside the NetBeans
IDE.
This target only works when run from inside the NetBeans
IDE.
Must select one file in the IDE or set run.class
Must select some files in the IDE or set test.includes
Must select one file in the IDE or set run.class
Must select one file in the IDE or set applet.url
Project3build.xml      Builds, tests, and runs the project .docx
Must select some files in the IDE or set javac.includes
Some tests failed; see details above.
Must select some files in the IDE or set test.includes
Some tests failed; see details above.
Must select some files in the IDE or set test.class
Must select some method in the IDE or set test.method
Some tests failed; see details above.
Must select one file in the IDE or set test.class
Must select one file in the IDE or set test.class
Must select some method in the IDE or set test.method
Must select one file in the IDE or set applet.url
Must select one file in the IDE or set applet.url
Project3/nbproject/genfiles.properties
build.xml.data.CRC32=38b645d4
build.xml.script.CRC32=9ab774ec
[email protected]
# This file is used by a NetBeans-based IDE to track changes in
generated files such as build-impl.xml.
# Do not edit this file. You may delete it but then the IDE will
never regenerate such files for you.
nbproject/build-impl.xml.data.CRC32=38b645d4
nbproject/build-impl.xml.script.CRC32=8fab32d2
nbproject/[email protected]
Project3/nbproject/project.properties
annotation.processing.enabled=true
annotation.processing.enabled.in.editor=false
annotation.processing.processor.options=
annotation.processing.processors.list=
annotation.processing.run.all.processors=true
annotation.processing.source.output=${build.generated.sources.
dir}/ap-source-output
build.classes.dir=${build.dir}/classes
build.classes.excludes=**/*.java,**/*.form
# This directory is removed when the project is cleaned:
build.dir=build
build.generated.dir=${build.dir}/generated
build.generated.sources.dir=${build.dir}/generated-sources
# Only compile against the classpath explicitly listed here:
build.sysclasspath=ignore
build.test.classes.dir=${build.dir}/test/classes
build.test.results.dir=${build.dir}/test/results
# Uncomment to specify the preferred debugger connection
transport:
#debug.transport=dt_socket
debug.classpath=
${run.classpath}
debug.test.classpath=
${run.test.classpath}
# Files in build.classes.dir which should be excluded from
distribution jar
dist.archive.excludes=
# This directory is removed when the project is cleaned:
dist.dir=dist
dist.jar=${dist.dir}/Project3.jar
dist.javadoc.dir=${dist.dir}/javadoc
excludes=
includes=**
jar.compress=false
javac.classpath=
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
javac.external.vm=true
javac.processorpath=
${javac.classpath}
javac.source=1.8
javac.target=1.8
javac.test.classpath=
${javac.classpath}:
${build.classes.dir}
javac.test.processorpath=
${javac.test.classpath}
javadoc.additionalparam=
javadoc.author=false
javadoc.encoding=${source.encoding}
javadoc.noindex=false
javadoc.nonavbar=false
javadoc.notree=false
javadoc.private=false
javadoc.splitindex=true
javadoc.use=true
javadoc.version=false
javadoc.windowtitle=
main.class=project3.Project3
manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF
mkdist.disabled=false
platform.active=default_platform
run.classpath=
${javac.classpath}:
${build.classes.dir}
# Space-separated list of JVM arguments used when running the
project.
# You may also define separate properties like run-sys-
prop.name=value instead of -Dname=value.
# To set system properties for unit tests define test-sys-
prop.name=value:
run.jvmargs=
run.test.classpath=
${javac.test.classpath}:
${build.test.classes.dir}
source.encoding=UTF-8
src.dir=src
test.src.dir=test
Project3/nbproject/project.xml
org.netbeans.modules.java.j2seproject
Project3
Project3/src/project3/Car.javaProject3/src/project3/Car.javapac
kage project3;
publicclassCar{
//Properties
privateString make;
privateString model;
privatedouble acceleration;
privateint range;
privatedouble price;
privateint topSpeed;
//HINT: SEE DOCUMENT on blackboard that lists the methods
of this class//
}
Project3/src/project3/CarSelector.javaProject3/src/project3/Car
Selector.javapackage project3;
publicclassCarSelector{
//Properties
privateCar[] carList;
//HINT: SEE DOCUMENT on blackboard that lists the methods
of this class//
}
Project3/src/project3/Project3.javaProject3/src/project3/Project
3.java/*
* To change this license header, choose License Headers in Pro
ject Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package project3;
import javax.swing.JOptionPane;
import javax.swing.JTextArea;
publicclassProject3{
publicstaticvoid main(String[] args){
//create CarSelector Object
//HINT: CarSelector aCarSelector = new CarSelector();
//Create each car object
// HINT: Car aCar = new Car(...........);
//Add each Car object to CarSelector Object using the .addCar
method
//HINT: aCarSelector.addCar(aCar);
//Create the Main Menu
//HINT: Look at examples of creating a menu from prior project
s
//Use a loop to keep displaying the main menu unless the user cl
icks on Exit
//HINT: Look at exmaples of create a loop to keep displaying a
menu from prior projects
//Each time the user selects an option from the Main menu displ
ay the Sub menu for that option
//HINT: same as above for main menu
//Use a loop to keep displaying the Sub Menu unless the user cli
cks on Return to Menu in that case display the Main Menu
//HINT: Same as above
}
}
Project #3 Screenshots
Student Name:_____________________
a) Screenshot of Main Menu
b) Screenshot of List Cars
c) Screenshot of Compare Acceleration Menu
i) Screenshot of Result #1
ii) Screenshot of Result #2
iii) Screenshot of Result #3
d) Screenshot of Compare Top Speed Menu
i) Screenshot of Result #1
ii) Screenshot of Result #2
iii) Screenshot of Result #3
e) Screenshot of Compare Price Menu
i) Screenshot of Result #1
ii) Screenshot of Result #2
iii) Screenshot of Result #3
f) Screenshot of Compare Mileage Menu
i) Screenshot of Result #1
ii) Screenshot of Result #2
iii) Screenshot of Result #3
1 | P a g e
Project3build.xml      Builds, tests, and runs the project .docx

More Related Content

DOCX
JobTestbuild.xml Builds, tests, and runs the project J.docx
DOCX
stateDatabuild.xml Builds, tests, and runs the project.docx
DOCX
Question IYou are going to use the semaphores for process sy.docx
DOCX
Generated by CamScanner from intsig.comR416build.xml.docx
DOCX
CommissionCalculationbuildclasses.netbeans_automatic_build.docx
DOCX
gUIsInterfacebuild.xml Builds, tests, and runs the pro.docx
DOCX
Total Compensationbuild.xml Builds, tests, and runs th.docx
DOCX
HW_6-1build.xml Builds, tests, and runs the project HW.docx
JobTestbuild.xml Builds, tests, and runs the project J.docx
stateDatabuild.xml Builds, tests, and runs the project.docx
Question IYou are going to use the semaphores for process sy.docx
Generated by CamScanner from intsig.comR416build.xml.docx
CommissionCalculationbuildclasses.netbeans_automatic_build.docx
gUIsInterfacebuild.xml Builds, tests, and runs the pro.docx
Total Compensationbuild.xml Builds, tests, and runs th.docx
HW_6-1build.xml Builds, tests, and runs the project HW.docx

Similar to Project3build.xml Builds, tests, and runs the project .docx (20)

DOCX
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
DOCX
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docx
PPT
N Unit Presentation
PDF
Install spark on_windows10
DOCX
Cis 355 ilab 1 of 6
DOCX
Cis 355 i lab 1 of 6
PPTX
Coded ui - lesson 4 - coded ui test
PDF
How to Implement Micro Frontend Architecture using Angular Framework
DOCX
Cis 355 i lab 1 of 6
DOCX
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
PPTX
Maven TestNg frame work (1) (1)
DOC
About Selenium Webdriver
PPTX
Autotools adaptation for integrating autotmatic unit tests and covering for K...
PDF
Exploring Maven SVN GIT
PDF
Maven and j unit introduction
PDF
Fundamental Concepts of React JS for Beginners.pdf
PPTX
Maven TestNg frame work (1) (1)
PPTX
Code igniter unittest-part1
PPTX
Extent Test report v3 with Appium/Selenium
PPT
Comparative Development Methodologies
PRG 420 Week 3 Individual Assignment Netbeans Project (annual co.docx
Lab 1Banking Systembuild.xmlBuilds, tests, and runs the proj.docx
N Unit Presentation
Install spark on_windows10
Cis 355 ilab 1 of 6
Cis 355 i lab 1 of 6
Coded ui - lesson 4 - coded ui test
How to Implement Micro Frontend Architecture using Angular Framework
Cis 355 i lab 1 of 6
AlarmClockAlarmClockAlarmClock.Designer.vbGlobal.Microsoft..docx
Maven TestNg frame work (1) (1)
About Selenium Webdriver
Autotools adaptation for integrating autotmatic unit tests and covering for K...
Exploring Maven SVN GIT
Maven and j unit introduction
Fundamental Concepts of React JS for Beginners.pdf
Maven TestNg frame work (1) (1)
Code igniter unittest-part1
Extent Test report v3 with Appium/Selenium
Comparative Development Methodologies

More from woodruffeloisa (20)

DOCX
Your employer is pleased with your desire to further your educatio.docx
DOCX
Your finished project, including both elements of the paper, should .docx
DOCX
Your first task is to find a public budget to analyze. It is suggest.docx
DOCX
Your essay should explain the trip from your personal point of view,.docx
DOCX
Your dilemma is that you have to make a painful medical decision and.docx
DOCX
your definition of moral reasoning. Then, compare two similarities.docx
DOCX
Your company is in the process of updating its networks. In preparat.docx
DOCX
Your company has just announced that a new formal performance evalua.docx
DOCX
Your CLC team should submit the followingA completed priority.docx
DOCX
Your classroom will be made up of diverse children. Research what va.docx
DOCX
Your business plan must include the following1.Introduction o.docx
DOCX
Your assignment is to write a formal response to this work. By caref.docx
DOCX
Your assignment is to write about the ethical theory HedonismYour.docx
DOCX
Your assignment is to write a short position paper (1 to 2 pages dou.docx
DOCX
Your assignment is to report on a cultural experience visit you .docx
DOCX
Your assignment is to create a Visual Timeline” of 12 to 15 images..docx
DOCX
Your annotated bibliography will list a minimum of six items. .docx
DOCX
Your business plan must include the following1.Introduction of .docx
DOCX
you wrote an analysis on a piece of literature. In this task, you wi.docx
DOCX
You work for a small community hospital that has recently updated it.docx
Your employer is pleased with your desire to further your educatio.docx
Your finished project, including both elements of the paper, should .docx
Your first task is to find a public budget to analyze. It is suggest.docx
Your essay should explain the trip from your personal point of view,.docx
Your dilemma is that you have to make a painful medical decision and.docx
your definition of moral reasoning. Then, compare two similarities.docx
Your company is in the process of updating its networks. In preparat.docx
Your company has just announced that a new formal performance evalua.docx
Your CLC team should submit the followingA completed priority.docx
Your classroom will be made up of diverse children. Research what va.docx
Your business plan must include the following1.Introduction o.docx
Your assignment is to write a formal response to this work. By caref.docx
Your assignment is to write about the ethical theory HedonismYour.docx
Your assignment is to write a short position paper (1 to 2 pages dou.docx
Your assignment is to report on a cultural experience visit you .docx
Your assignment is to create a Visual Timeline” of 12 to 15 images..docx
Your annotated bibliography will list a minimum of six items. .docx
Your business plan must include the following1.Introduction of .docx
you wrote an analysis on a piece of literature. In this task, you wi.docx
You work for a small community hospital that has recently updated it.docx

Recently uploaded (20)

PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
TR - Agricultural Crops Production NC III.pdf
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
Pre independence Education in Inndia.pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
RMMM.pdf make it easy to upload and study
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
Microbial disease of the cardiovascular and lymphatic systems
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
O5-L3 Freight Transport Ops (International) V1.pdf
TR - Agricultural Crops Production NC III.pdf
102 student loan defaulters named and shamed – Is someone you know on the list?
Week 4 Term 3 Study Techniques revisited.pptx
human mycosis Human fungal infections are called human mycosis..pptx
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
Anesthesia in Laparoscopic Surgery in India
O7-L3 Supply Chain Operations - ICLT Program
Pre independence Education in Inndia.pdf
Complications of Minimal Access Surgery at WLH
RMMM.pdf make it easy to upload and study
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
Microbial disease of the cardiovascular and lymphatic systems
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPH.pptx obstetrics and gynecology in nursing
Pharma ospi slides which help in ospi learning
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf

Project3build.xml Builds, tests, and runs the project .docx

  • 1. Project3/build.xml Builds, tests, and runs the project Project3. Project3/manifest.mf Manifest-Version: 1.0 X-COMMENT: Main-Class will be added automatically by build Project3/nbproject/build-impl.xml
  • 7. Must set src.dir Must set test.src.dir Must set build.dir Must set dist.dir Must set build.classes.dir Must set dist.javadoc.dir Must set build.test.classes.dir Must set build.test.results.dir Must set build.classes.excludes Must set dist.jar
  • 20. Must set JVM to use for profiling in profiler.info.jvm Must set profiler agent JVM arguments in profiler.info.jvmargs.agent
  • 27. Must select some files in the IDE or set javac.includes
  • 28. To run this application from the command line without Ant, try: java -jar "${dist.jar.resolved}"
  • 29. Must select one file in the IDE or set run.class Must select one file in the IDE or set run.class
  • 30. Must select one file in the IDE or set debug.class Must select one file in the IDE or set debug.class Must set fix.includes This target only works when run from inside the NetBeans IDE.
  • 31. Must select one file in the IDE or set profile.class This target only works when run from inside the NetBeans IDE. This target only works when run from inside the NetBeans IDE. This target only works when run from inside the NetBeans IDE.
  • 32. Must select one file in the IDE or set run.class
  • 33. Must select some files in the IDE or set test.includes Must select one file in the IDE or set run.class Must select one file in the IDE or set applet.url
  • 35. Must select some files in the IDE or set javac.includes Some tests failed; see details above.
  • 36. Must select some files in the IDE or set test.includes Some tests failed; see details above. Must select some files in the IDE or set test.class Must select some method in the IDE or set test.method Some tests failed; see details above. Must select one file in the IDE or set test.class Must select one file in the IDE or set test.class Must select some method in the IDE or set test.method
  • 37. Must select one file in the IDE or set applet.url Must select one file in the IDE or set applet.url
  • 39. build.xml.script.CRC32=9ab774ec [email protected] # This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml. # Do not edit this file. You may delete it but then the IDE will never regenerate such files for you. nbproject/build-impl.xml.data.CRC32=38b645d4 nbproject/build-impl.xml.script.CRC32=8fab32d2 nbproject/[email protected] Project3/nbproject/project.properties annotation.processing.enabled=true annotation.processing.enabled.in.editor=false annotation.processing.processor.options= annotation.processing.processors.list= annotation.processing.run.all.processors=true annotation.processing.source.output=${build.generated.sources. dir}/ap-source-output build.classes.dir=${build.dir}/classes build.classes.excludes=**/*.java,**/*.form # This directory is removed when the project is cleaned:
  • 40. build.dir=build build.generated.dir=${build.dir}/generated build.generated.sources.dir=${build.dir}/generated-sources # Only compile against the classpath explicitly listed here: build.sysclasspath=ignore build.test.classes.dir=${build.dir}/test/classes build.test.results.dir=${build.dir}/test/results # Uncomment to specify the preferred debugger connection transport: #debug.transport=dt_socket debug.classpath= ${run.classpath} debug.test.classpath= ${run.test.classpath} # Files in build.classes.dir which should be excluded from distribution jar dist.archive.excludes= # This directory is removed when the project is cleaned: dist.dir=dist
  • 41. dist.jar=${dist.dir}/Project3.jar dist.javadoc.dir=${dist.dir}/javadoc excludes= includes=** jar.compress=false javac.classpath= # Space-separated list of extra javac options javac.compilerargs= javac.deprecation=false javac.external.vm=true javac.processorpath= ${javac.classpath} javac.source=1.8 javac.target=1.8 javac.test.classpath= ${javac.classpath}: ${build.classes.dir} javac.test.processorpath=
  • 43. ${javac.classpath}: ${build.classes.dir} # Space-separated list of JVM arguments used when running the project. # You may also define separate properties like run-sys- prop.name=value instead of -Dname=value. # To set system properties for unit tests define test-sys- prop.name=value: run.jvmargs= run.test.classpath= ${javac.test.classpath}: ${build.test.classes.dir} source.encoding=UTF-8 src.dir=src test.src.dir=test Project3/nbproject/project.xml org.netbeans.modules.java.j2seproject Project3
  • 44. Project3/src/project3/Car.javaProject3/src/project3/Car.javapac kage project3; publicclassCar{ //Properties privateString make; privateString model; privatedouble acceleration; privateint range; privatedouble price; privateint topSpeed; //HINT: SEE DOCUMENT on blackboard that lists the methods of this class// } Project3/src/project3/CarSelector.javaProject3/src/project3/Car Selector.javapackage project3; publicclassCarSelector{ //Properties privateCar[] carList; //HINT: SEE DOCUMENT on blackboard that lists the methods of this class//
  • 45. } Project3/src/project3/Project3.javaProject3/src/project3/Project 3.java/* * To change this license header, choose License Headers in Pro ject Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package project3; import javax.swing.JOptionPane; import javax.swing.JTextArea; publicclassProject3{ publicstaticvoid main(String[] args){ //create CarSelector Object //HINT: CarSelector aCarSelector = new CarSelector(); //Create each car object // HINT: Car aCar = new Car(...........); //Add each Car object to CarSelector Object using the .addCar method //HINT: aCarSelector.addCar(aCar); //Create the Main Menu //HINT: Look at examples of creating a menu from prior project s //Use a loop to keep displaying the main menu unless the user cl icks on Exit //HINT: Look at exmaples of create a loop to keep displaying a
  • 46. menu from prior projects //Each time the user selects an option from the Main menu displ ay the Sub menu for that option //HINT: same as above for main menu //Use a loop to keep displaying the Sub Menu unless the user cli cks on Return to Menu in that case display the Main Menu //HINT: Same as above } } Project #3 Screenshots Student Name:_____________________ a) Screenshot of Main Menu b) Screenshot of List Cars c) Screenshot of Compare Acceleration Menu i) Screenshot of Result #1 ii) Screenshot of Result #2 iii) Screenshot of Result #3 d) Screenshot of Compare Top Speed Menu
  • 47. i) Screenshot of Result #1 ii) Screenshot of Result #2 iii) Screenshot of Result #3 e) Screenshot of Compare Price Menu i) Screenshot of Result #1 ii) Screenshot of Result #2 iii) Screenshot of Result #3 f) Screenshot of Compare Mileage Menu i) Screenshot of Result #1 ii) Screenshot of Result #2 iii) Screenshot of Result #3 1 | P a g e