4
Sometimes the eclipse, it shows in auto-complete the names of the variables in an easier way to understand. For example, if on this line you press Ctrl+Space :
BufferedImage img = new BufferedImage();
It shows among others Bufferedimage(int width,int height, int imageType)
But if I use something of Javafx sometimes does not appear, for example if I use :
PixelWriter pw = writableImage.getPixelWriter();
pw.setArgb();
It shows : Pw.setArgb(int arg0,int arg1,int arg2)
You can set this up, to show easier at all?
Are you using the latest version of Eclipse? Also try to update the Code Recommenders, he is responsible for the complete code, if it works out let us know here https://eclipse.org/recommenders/
– dougg0k