Created
November 11, 2011 12:33
-
-
Save tristantarrant/1357893 to your computer and use it in GitHub Desktop.
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
| package net.dataforte.classretention; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| @Target({java.lang.annotation.ElementType.FIELD, java.lang.annotation.ElementType.METHOD}) | |
| @Retention(RetentionPolicy.CLASS) | |
| public @interface SimpleAnnotation { | |
| String aString(); | |
| int anInt(); | |
| SimpleEnum aSimpleEnum(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment