1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved.2 3 package jodd.petite.meta;4 5 import java.lang.annotation.*;6 7 /**8 * Petite bean reference for fields and constructor arguments.9 */10 @Documented11 @Retention(RetentionPolicy.RUNTIME)12 @Target({ElementType.FIELD, ElementType.PARAMETER})13 public @interface PetiteBeanRef {14 15 /**16 * Name of bean to inject.17 */18 public String value() default "";19 20 }21