I have a List type of ( java.awt.List ) like following:
final List lstA = new List();
during add item to this list , there is a strikethrough on addItem:
and give me warning like following:
The method addItem(String) from the type List is deprecated
however program works fine.
what is causes this strikethrough on addItem?