/sigmah/src/test/java/org/sigmah/test/Modules.java

http://sigma-h.googlecode.com/ · Java · 16 lines · 7 code · 5 blank · 4 comment · 0 complexity · 738046b34d87b61db6fd3a34ffb32aef 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 java.lang.annotation.Retention;
  7. import java.lang.annotation.RetentionPolicy;
  8. @Retention(value = RetentionPolicy.RUNTIME)
  9. public @interface Modules {
  10. public Class[] value();
  11. }