Allow the possibility to stop the internal timer in ViewControlsSelectListener by sbodmer · Pull Request #80 · NASAWorldWind/WorldWindJava

Here are some explanation why stopping the timer could be a good idea :
Some developers (myself included) don't uses System.exit() to terminate a java process (the jvm is terminated automatically if no more
(non-deamons) threads are running, this way it's possible to check that every code is managed correctly when the app is quitting).
The current implementation does not allow to stop the timer, so the jvm will never terminate automatically...