Personally I think you're looking at this the wrong way. What would be better to look at would be breaking down your Junit tests into separate packages based off of functionality and time.
For projects like this I run sanity tests for each commit, but these tests are very limited and cover the most basic of functions and then on top of this run nightly tests to cover much more (seeing as no-one works nights, it gives a 12 hour window to test that days code).
If your entire testing suite required it (but I would be surprised if it did) you could then run a weekend test suite.
To test only altered classes would assume that these classes don't affect any other parts of your project, which could lead to errors that wouldn't be picked up unless you did comprehensive tests, or you just happened to be altering the affected area anyway.
I know this doesn't technically answer your question, but something to think over.