I will add the support for the new method `drawOval` in the different parts: - [x] Create `adr-lejos` to track change in the interface - [x] lejos-commons (Interface GraphicsLCD) - [x] ev3dev-lang-java (LCDStretch & LCD Jessie) - [x] enable the example in template: https://www.youtube.com/watch?v=iD5OcfiN3f0 ``` java public void drawOval(int x, int y, int width, int height) { g2d.drawOval(x, y, width, height); } ``` Related issue: https://github.com/ev3dev-lang-java/ev3dev-lang-java/issues/580