package com.halzhang.android.examples.dagger2example.utils; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import javax.inject.Scope; /** * Created by Hal on 16/5/29. */ @Documented @Scope @Retention(RetentionPolicy.RUNTIME) public @interface FragmentScoped { }