I have found it tricky to get my own packages and imports to work correctly. I strongly suggest you follow the suggestion made by "red bull" and put all your java files in one directory and not worry about import statements. Get it to compile that way before you start organizing your packages.
When you get that much to work, make sure each java file has a line such as:
package pool;
This will define the package that should contain the classes in that file. Also, these files should all be in a subdirectory (or folder) named "pool".
Finally, you will need to add the folder that contains this pool folder to your CLASSPATH. If you put your source files in a directory called C:\my_java_files\pool, then you need to add C:\my_java_files to the CLASSPATH variable in order to allow import statements to find the appropriate package and its classes.
HTH
Layne
p.s. Someone, please correct me if I've made any mistakes above.
p.p.s. RED BULL:
you should change your name to follow the naming policy before a Sheriff arrests you ;-)