CS 99

Fundamental Programming Concepts
Summer 2000

The CS99 Package

Current Version: 2 (7/5/00)

The CS99 package is a collection of classes written for this course to simplify certain programming tasks.

In order to use the package in a Metrowerks project, follow these instructions:

  1. Download the CS99.jar file and copy it into the same directory the .mcp file for your project is in.

  2. Add the package to your project. Go to the Project menu, choose Add Files. Change the "Files of type" box to say "All Files". Select CS99.jar, and click "Add". It should now appear in the Project window.

  3. Import the package by adding the following line to the beginning of every .java file in the project that needs to use classes from the CS99 package. Import statements belong at the very beginning of the file, even before the comment for the first class in the file.

        import CS99.*;

Change log: