KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jfun > yan > nuts > annotations > Inject


1 package jfun.yan.nuts.annotations;
2
3 import java.lang.annotation.Retention JavaDoc;
4 import java.lang.annotation.RetentionPolicy JavaDoc;
5
6
7 /**
8  * The default Dependency Injection marker annotation.
9  * <p>
10  * @author Ben Yu
11  * Dec 15, 2005 11:23:58 PM
12  */

13 @Retention JavaDoc(RetentionPolicy.RUNTIME)
14 public @interface Inject{
15
16 }
17
Popular Tags