You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
842 B
46 lines
842 B
/*
|
|
* Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
import java.lang.annotation.*;
|
|
import static java.lang.annotation.ElementType.*;
|
|
|
|
/**
|
|
* A program element annotated @Deprecated is one that programmers
|
|
* are discouraged from using, typically because it is dangerous,
|
|
* or because a better alternative exists. Compilers warn when a
|
|
* deprecated program element is used or overridden in non-deprecated code.
|
|
*
|
|
* @author Neal Gafter
|
|
* @since 1.5
|
|
* @jls 9.6.3.6 @Deprecated
|
|
*/
|
|
@Documented
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(value={CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, PARAMETER, TYPE})
|
|
public @interface Deprecated {
|
|
}
|