Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Can Eclipse provide content assist for lambdas?

12 views
Skip to first unread message

Graeme Geldenhuys

unread,
Nov 15, 2020, 6:47:57 AM11/15/20
to
I was writing the code below, and when I got to the line with
clip.addLineListener()

I had my cursor between the parenthesis and pressed Ctrl+Space thinking
that Eclipse could write the lambda template for me, based in the
functional interface in use there. But to my surprise, Eclipse had nothing
to offer. Is there something in Eclipse I need to enable, to get that to
work?

I'm using Eclipse 2020-09 (4.17.0)

=========================
Clip clip = AudioSystem.getClip();
// Open audio clip and load samples from the audio input stream.
clip.open(audioIn);
clip.start();
// Listen for STOP event so we can close the clip, otherwise we will run out of resources
clip.addLineListener(event -> {
if (event.getType().equals(LineEvent.Type.STOP)) {
clip.close();
}
});
=======================

Afterwards, I switched to IntelliJ, and it had not problem in filling
in the lambda template for me.

Regards,
Graeme
0 new messages