I am going to deprecate a class in Java.
@Deprecated
class deprecatedClass
and I have list of this deprecated class,
List<deprecatedClass> listOfDeperecatedClass
So do I need to add the @Deprecated
tag for this list too?
Edit: @Deprecated
should have a capital 'D'.
See: http://docs.oracle.com/javase/7/docs/api/java/lang/Deprecated.html