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.
44 lines
650 B
44 lines
650 B
/*
|
|
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang.annotation;
|
|
|
|
|
|
/**
|
|
* Indicates that a field defining a constant value may be referenced
|
|
* from native code.
|
|
*
|
|
* The annotation may be used as a hint by tools that generate native
|
|
* header files to determine whether a header file is required, and
|
|
* if so, what declarations it should contain.
|
|
*
|
|
* @since 1.8
|
|
*/
|
|
@Documented
|
|
@Target(ElementType.FIELD)
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
public @interface Native {
|
|
}
|