Possible Duplicate:
What is a good use case for static import of methods?
I rarely ever see a static import in java like this:
import static java.lang.Math.*;
Then you could access PI
without having to call Math.PI
.
Since you don't see this that often, does that mean it is a bad design to do this?