Well, since it is homework, I'll just give a general tip and let you figure the rest. Make each of your operation classes extend Thread. This means they must all implement a "run()" method. I think you can figure out how that applies to what you are aiming for.
I would also suggest that the one thing all of these do is operate on a file, so you may consider this a good thing to pass into the constructor.
For the main method, read the tutorials on basic thread handling. It should be fairly straight forward from there.