Is there anyway to get Eclipse to automatically look for static imports? For example, now that I've finally upgraded to Junit 4, I'd like to be able to write:
assertEquals(expectedValue, actualValue);
hit ctrl-SHIFT-O and have Eclipse add:
import static org.junit.Assert.assertEquals;
Maybe I'm asking too much.