Ecco il mio codice di esempio Java:Eclipse - `invito aperto hierarchy` interrompere la ricerca nella catena lambda
public class Test {
public static void main(String[] args) {
methodDepth0(
()->
methodDepth1(
()->
methodDepth2()
)
);
}
static Object methodDepth2() {
return null;
}
interface MyIF {
void call();
}
static void methodDepth0(MyIF myIf){
myIf.call();
}
interface MyIF2 {
void call();
}
static void methodDepth1(MyIF2 myIf2){
myIf2.call();
}
}
Quando apro gerarchia di richiamo del metodo methodDepth2()
da Eclipse (4.4), open call hierarchy
interrompere la ricerca successiva chiamante:
Quello che mi aspetto è come aprire gerarchia di richiamo del metodo methodDepth1()
che mostrano fino a che il metodo main
.
Una patch rapida: https://goo.gl/2R0xH4 – andyf