blob: 74b34f647beeae761aa7afbe6ed6aefdb246dd6c [file] [log] [blame]
package test.tmp;
import static java.lang.annotation.ElementType.CONSTRUCTOR;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
@Target({METHOD, TYPE, CONSTRUCTOR})
public @interface IgnoreUntil {
/**
* Format: hhmm
*/
public String time();
}