001package edu.pdx.cs410J.di; 002 003import com.google.inject.BindingAnnotation; 004 005import java.lang.annotation.*; 006 007/** 008 * A marker interface for constructor parameters whose values should be the data directory 009 */ 010@BindingAnnotation 011@Retention(RetentionPolicy.RUNTIME) 012@Target( { ElementType.PARAMETER, ElementType.FIELD, ElementType.METHOD }) 013@Documented 014public @interface DataDirectory 015{ 016}