01: /*****************************************************************************
02: * Copyright (C) PicoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: * Original code by *
09: *****************************************************************************/package org.picocontainer.annotations;
10:
11: import java.lang.annotation.Target;
12: import java.lang.annotation.ElementType;
13: import java.lang.annotation.Retention;
14: import java.lang.annotation.RetentionPolicy;
15:
16: @Retention(RetentionPolicy.RUNTIME)
17: @Target(value={ElementType.METHOD,ElementType.FIELD})
18: public @interface Inject {
19: }
|