Sometimes eclipse, it shows in auto-completing the variable names in an easier way to understand. For example, if in this line press ctrl + Space:
BufferedImage img = new BufferedImage();
It shows among others BufferedImage (int width, int height, int imageType)
But if I use something from JavaFX sometimes it does not appear, for example if I use:
PixelWriter pw = writableImage.getPixelWriter();
pw.setArgb();
It shows: pw.setArgb (int arg0, int arg1, int arg2)
Can you configure this to make it easier for everyone?