Back to project page tape.
The source code is released under:
Apache License
If you think the Android project tape listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Copyright 2012 Square, Inc. package com.squareup.tape; /* ww w . j a v a 2s . c o m*/ /** * Inject dependencies into tasks of any kind. * * @param <T> The type of tasks to inject. */ public interface TaskInjector<T extends Task> { void injectMembers(T task); }