I am going to deprecate a class in Java.
@Deprecated class deprecatedClass
and I have list of this deprecated class,
List&
You only need to add the deprecation message to the declaration of anything you are deprecating. It serves as a warning that people should avoid an implementation which uses the deprecated class, such as in List.
List