Re: importing class files :S
If the two classes are in the same directory, they are in the same package (see Creating and Using Packages). You only need to import if they are in different packages. If they are in the same directory, Compile ConCLOCK first, then compile your other class. If they are in different folders, you need to define a package structure and import the correct package files appropriately.
Re: importing class files :S
The import statement does not "import" other files into your code. It is way to tell the compiler where to look for classes that are used in your program. It is an extension of the classpath.
Re: importing class files :S
that works, thanks to the both of you ... learning everyday and im stoked you both clarified those things up for me.