Re: How to see missing implementations of a new method in interface

2022-09-30 Thread Laszlo Kishalmi
The IDE reports an error on the class line which does not implement some abstract methods. using Alt+Enter it offers a fix for implementing them. On 9/30/22 01:40, Mikael Petterson wrote: Hi, I am using Netbeans 15 ( really great IDE!!). When I build using maven I get: error: ClassA.Innercl

How to see missing implementations of a new method in interface

2022-09-30 Thread Mikael Petterson
Hi, I am using Netbeans 15 ( really great IDE!!). When I build using maven I get: error: ClassA.InnerclassB is not abstract and does not override abstract method mymethod(int number,String name) in IntefaceA. Should IDE not show warnings or hints in the code so I can fix it. Or have a missed