Last active
August 18, 2020 15:51
-
-
Save huscael/ed3a9b13d8591ed2b1dac0d1b799454c to your computer and use it in GitHub Desktop.
[Java Annotation Demo] java annotation #java #annotation
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.*; | |
@Target(ElementType.TYPE) | |
@Retention(RetentionPolicy.SOURCE) | |
public @interface Helper { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment