package com.todoroo.andlib.service; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Autowired is an annotation that tells the dependency injector to * set up the class as appropriate. * * @author Tim Su * */ @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface Autowired { // }