In Java, if you import a deprecated class:
import SomeDeprecatedClass;
You get this warning: The type SomeDeprecatedClass is deprecat
The type SomeDeprecatedClass is deprecat
Use this annotation on your class or method:
@SuppressWarnings( "deprecation" )