I am going to deprecate a class in Java.
@Deprecated class deprecatedClass
and I have list of this deprecated class,
List&
Do you have operations on the List as part of your public interface? In that case, mark all those methods as deprecated too. Otherwise you should be fine.
List
deprecated