• Can Eclipse provide content assist for lambdas?

    From Graeme Geldenhuys@21:1/5 to All on Sun Nov 15 11:47:38 2020
    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

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)