/sigmah/src/test/java/org/sigmah/server/dao/OnDataSet.java
Java | 14 lines | 7 code | 3 blank | 4 comment | 0 complexity | 8a931fb55f63065d8e69b0085b4f7410 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 6package org.sigmah.server.dao; 7 8import java.lang.annotation.Retention; 9import java.lang.annotation.RetentionPolicy; 10 11@Retention(RetentionPolicy.RUNTIME) 12public @interface OnDataSet { 13 String value(); 14}