Last active
September 9, 2015 06:54
-
-
Save Folyd/84bea5831346e21a53e6 to your computer and use it in GitHub Desktop.
A annotation which to indicate the method is called by native code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Inherited; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| /** | |
| * A annotation which to indicate the method is called by native code. | |
| * | |
| */ | |
| @Target(ElementType.METHOD) | |
| @Retention(RetentionPolicy.SOURCE) | |
| @Inherited | |
| public @interface NativeCalled { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment