This is a _package_ version (with some annotations) of the Clock application offered as the starting point for the Clock project. It demonstrates usage of the following Java features: packages, annotations and javadoc tool To compile to the package structure run: javac -d classes/ -sourcepath src/ src/clock/Clock.java or, using the arguments file "args", run: javac @args @files Compiled classes will be placed to clock subdirectory of classes (which must already exist prior to runnign the compiling command). To generate the javadoc pages run (all options on one line): javadoc -d docs/ -sourcepath src/ -private -author clock or, simply javadoc @doc_args clock To run the application Clock execute the command: java -cp classes clock.Clock &