Here's my problem... In several places in my code, due either to how java does static initializations or treats final variables, I have to have my variable declaration and initialization on separate lines. Like so:
public static final Foo THE_FOO; // line X
static
{
THE_FOO = new Foo(); // line Y
}
Right now, when I'm using THE_FOO in some code in another class somewhere, if I place my cursor on the variable, I can jump to the declaration with "Go To Declaration", but that only jumps me to line X, and what I'm really interested is line Y. It would be nice if there was a "Go To Initialization" that could get me to line Y directly. If there are multiple initialization lines, it could pop up a little box like the "Go To Implementation(s)" does.
Doesn't this sound useful? If this feature is already present, then I apologize, but I sure can't find it!