@SuppressWarnings
annotation tells the compiler to
suppress the warning messages it normally show during compilation time.
It has some level of suppression to be added to the code, these level
including: all
, deprecation
, fallthrough
, finally
, path
, serial
and unchecked
.package org.algobd.code.example.annotation; import java.util.Date; public class SuppressWarningsExample { @SuppressWarnings (value={ "deprecation" }) public static void main(String[] args) { Date date = new Date( 2013 , 2 , 26 ); System.out.println( "date = " + date); } } |
@SuppressWarnings
annotation the compiler will report that the constructor of the Date
class called above has been deprecated.source: http://www.kodejava.org/examples/350.html