/sigmah/src/test/java/org/sigmah/test/TestScoped.java

http://sigma-h.googlecode.com/ · Java · 17 lines · 8 code · 5 blank · 4 comment · 0 complexity · 4876751dc29f01080840cfb17a0a7531 MD5 · raw file

  1. /*
  2. * All Sigmah code is released under the GNU General Public License v3
  3. * See COPYRIGHT.txt and LICENSE.txt.
  4. */
  5. package org.sigmah.test;
  6. import com.google.inject.ScopeAnnotation;
  7. import java.lang.annotation.Retention;
  8. import java.lang.annotation.RetentionPolicy;
  9. @ScopeAnnotation
  10. @Retention(RetentionPolicy.RUNTIME)
  11. public @interface TestScoped {
  12. }