Created
February 17, 2015 21:34
-
-
Save fge/b07929a296c44377ca29 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
| /* | |
| * Copyright (c) 2015, Francis Galiegue (fgaliegue@gmail.com) | |
| * | |
| * This software is dual-licensed under: | |
| * | |
| * - the Lesser General Public License (LGPL) version 3.0 or, at your option, any | |
| * later version; | |
| * - the Apache Software License (ASL) version 2.0. | |
| * | |
| * The text of both licenses is available under the src/resources/ directory of | |
| * this project (under the names LGPL-3.0.txt and ASL-2.0.txt respectively). | |
| * | |
| * Direct link to the sources: | |
| * | |
| * - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt | |
| * - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt | |
| */ | |
| package com.github.fge.filesystem; | |
| import java.lang.annotation.Documented; | |
| import java.lang.annotation.ElementType; | |
| import java.lang.annotation.Retention; | |
| import java.lang.annotation.RetentionPolicy; | |
| import java.lang.annotation.Target; | |
| @Documented | |
| @Retention(RetentionPolicy.SOURCE) | |
| @Target(ElementType.METHOD) | |
| public @interface InvokedByReflection | |
| { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment