Skip to content

Instantly share code, notes, and snippets.

@AnnaBoro
Last active February 13, 2016 16:25
Show Gist options
  • Save AnnaBoro/1509197b71a553ebc670 to your computer and use it in GitHub Desktop.
Save AnnaBoro/1509197b71a553ebc670 to your computer and use it in GitHub Desktop.
package lesson7_10.reflection;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD, ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
public @interface Service {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment