Lab Exercise #1 Test Compilation and Javadoc Generation CS 2334 ...
Recommend Documents
ming methodologies including inheritance, abstract data types, programming
tools ... The Ninth edition of Introduction to Java Programming, by Y. Daniel Liang
.
"Ballast" means a device used with an electric discharge lamp to. 12 obtain
necessary ... "Low voltage dry type distribution transformer" means a transformer.
12 to which all of the ... other parts necessary for operation. 18. 20. 17. ....
electri
A Horn-clause program is regarded as a forest of program trees. A program ..... in (iv). The computation is over here because there is no more dependency paths ...
detection is a promising way to reveal bugs in programs. Existing .... Figure 1. Overview. faster. Compared to standard Randoop, this optimization increases the number ..... all to calling the API get a priority of zero and are ignored altogether by
end of the rainbowâ, BioEssays 24, 953-959. More details ..... double-stranded DNA has six reading frames. ... Genetic
separate compilation and the assembly of modules written in other languages. ... A GRC program is a rooted directed acyclic graph G = (N,r,c,V,O,S,t) where N is.
Jul 28, 2006 - processes which data item at what time. Solving these ... this as the input's meta-data, as it contains information about the media stream itself. ... DVD drive or hard drive. .... the execution of previous AOPs, we retrieve old tasks
Nov 16, 2012 ... You may want to consult Chapter 6 of Craig Larman's Applying UML and Patterns
, along with the material listed on the MSO website, ...
See Chapter 12 for brain and spinal cord anatomy. See Chapter 13 for cranial
nerves and spinal nerves. What you need to be able to do on the exam after ...
We define si,j as slot j of composition i, and we define. I(si,j) as the set of ..... Advertising Personnel. Marion Delaney ... Debbie Sims. Assistant Advertising ...
Dec 23, 2016 - Calls upon both parties to act on the basis of international law, including ... for the convening of an i
[SpeedLimit.sav] A highway patrol officer believes that the average speed of cars ... by all executives reading and send
Step 1: Download the evaluation version of the WinHex editor from http://www.
winhex.com/winhex- e.zip, saving it to a temp directory. Step 2: Create a directory
...
divCheck v1 v2 (OK (Int v))â overflowCheck v v'â evalBinOp Div (Int v1) (Int v2) v' ...... Ada reference manual. htt
Please circle the number on each item that indicates HOW YOU FEEL RIGHT NOW. I FEEL: 1. Great. 1. 2. 3. 4. 5. 6. 7 not a
This inventory contains a number of items designed to reflect how you feel at this particular moment in time. (i.e., Rig
duplexing, which contributes to less paper waste; and toner-save mode in the
drivers, which helps extend the life of the print car- tridges. ..... Chart Recorder.
Jan 8, 2004 - MEMORY: view current, maximum and minimum temperature / humidity readings. 11. CHANNEL: switch remote sens
calities west of the Rio Atoyac in the western. Sierra Madre del Sur of Guerrero differ in adult body size and ...... of Llano de las Flores (Table 5, localities IV-. VI).
and Oedipina (16 spp.) (Wake and Elias, 1983). (Additional analysis may justify recognition of several more species; thus the 15 species may represent only a ...
publisherCode=asp. ... AssTRAcr: The degree to which host suitability is a reflection of host ... capable of hosting a parasite species play equivalent roles in.
and elements. Compiler-generated .... Some sampled events occur at a fixed rate, e.g., processor cycles; others, e.g., cache misses, occur at a variable rate.
Profiling, Compilation, and HDL Generation within the hArtes Project. Koen Bertels, Georgi ...... the MORPHEUS project (IST-027342) supported by the Sixth ...
Brief Introduction: Microsoft Robotics Studio (MSRS) is a Windows-based
environment for hobbyist, academic and commercial developers to create
robotics ...
Lab Exercise #1 Test Compilation and Javadoc Generation CS 2334 ...
28 Aug 2009 ... Successfully compile a sample Java program. 3. Generate the Javadoc
documentation for the program. Instructions: This lab exercise requires ...
Lab Exercise #1 Test Compilation and Javadoc Generation CS 2334, Fall 2009 Name: Learning Objectives (Milestones): 1. Install Java Development Kit 2. Successfully compile a sample Java program 3. Generate the Javadoc documentation for the program Instructions: This lab exercise requires a laptop with an Internet connection. Once you have completed the exercises in this document, you will submit it for grading. You should legibly write your name at the top of this lab handout. Note: individual work is required for steps 4-8. 1. Install the Java Development Kit. Refer to the Java Installation Instructions on the class website. Once you have Java installed, you can check your installation to ensure everything is correctly installed and that your PATH environment variable is correctly set by opening a command window (click on Start | Run and then enter the text “cmd” and click “OK”). If you have the correct version installed and your path set correctly the following commands should give the results listed below the commands. >java -version java version "1.6.0_11" Java(TM) SE Runtime Environment (build 1.6.0_11-b03) Java HotSpot(TM) Client VM (build 11.0-b16, mixed mode, sharing)... >javac -version javac 1.6.0_11 ...
3. Download the sample “Lab1.java” source code from the class website. Save this file into a folder on your laptop where you will keep your CS 2334 Projects and Labs. Just for today (this may change next week), create a cs2334 folder in the root of your laptop's hard drive (this would be C:\cs2334) and then create a lab1 folder inside of the cs2334 folder (C:\cs2334\lab1) and store these files in the lab1 folder. You will also need to download the “docs.opt” file from the class website. Save it in the same folder as the Lab1.java file. 4. Add the following code to the main method of Lab1.java using Notepad (or any text editor you desire, but make sure you do not use a word processor, or any other program that does any markup/formatting at all). It can be found in Windows XP under Start | All Programs | Accessories. Do NOT use an IDE at this time. Lab1 lab1Program; lab1Program = new Lab1( "This is the first lab exercise for CS 2334." );
5. Compile the Lab1.java file from the DOS command prompt with the following command (you need a command window to do this—do NOT use Eclipse or another IDE). You should receive several compilation errors that you need to identify and correct in the source code. List these errors in the space provided below with a short explanation of how you fixed them. Be sure to list the line number that the actual error occurred on in the Lab1.java file. Once you have removed all of these errors, the file should compile without any errors or warnings.
CS 2334
1
The DOS command is: javac Lab1.java List the errors found and give a short explanation of how you fixed each one:
6. Run the Lab1 program from the DOS command prompt (again, without Eclipse). This should result in runtime errors. Fix these errors in the program source code and verify that the program works by running it again. The command required to run the program is: java Lab1
List the runtime errors encountered and briefly explain your solution to the problems:
CS 2334
2
7. Generate Javadoc documentation for the Lab1 program with the following command. (This must be done at the DOS command prompt.) javadoc @docs.opt *.java
This command will create a new sub-folder named javadocs and place several files in the folder including an index.html file. The output of the javadoc command should be similar to: Creating destination directory: "javadocs\" Loading source file Lab1.java... Constructing Javadoc information... ... Next, open the javadoc\index.html file using a web browser and inspect its contents.
Describe the contents of the index.html file. 8. Submission Instructions: All components are due by 11:29 on Friday, August 28th. a. Zip up your program and the resulting javadocs: Option 1: right click on Lab1.java and select “Send to: new zipped (compressed) folder”, then drag the javadocs directory into Lab1.zip Option 2 (unix/OSX): zip lab1.zip Lab1.java javadocs/* b. Submit lab1.zip to D2L (the “lab 1” dropbox) c. Hand-in a hardcopy of this worksheet to the TA or the instructor (the beginning of class is fine).