|
Course Description Syllabus Reading List Team Project |
Homework 3Last updated: Oct 16, 2:40 pm For this homework you will construct a Java application that includes a GUI for a search interface with at least the following components:
When your program is complete, create an executable "JAR" file called hw3.jar and email it to both the professor and the TA. Homework must be submitted by 6:00 pm on the date indicated in the syllabus. Homework submitted after the deadline will not be graded (since the solutions will be posted), so it is a sure thing that you would be better off to send something on time rather than to sending nothing in the hopes that you might have something better later. Be sure to read the instructions about working together on homework on the course description Web page if you have any questions about what sort of collaboration is allowed.
To create an exectutable JAR file, select the Eclipse File/Export
menu, then select JAR file and click Next. Select the resources to
export. Make sure that check the two boxes to export both the
generated class files and the source files. Select the export
destination and click Next. Accept the standard JAR packaging options
by clicking Next again. Finally, select the main class, whose main()
method will be called when the JAR file is executed. If your MS-DOS
environment is set up correctly, you can then test the JAR file with
the command "java -classpath hw3.jar Bill Kules |