001
002package net.filebot.format;
003
004import static java.lang.annotation.ElementType.*;
005import static java.lang.annotation.RetentionPolicy.*;
006
007import java.lang.annotation.Documented;
008import java.lang.annotation.Retention;
009import java.lang.annotation.Target;
010
011@Documented
012@Retention(RUNTIME)
013@Target(METHOD)
014public @interface Define {
015
016        String[] value();
017
018        static final String undefined = "";
019}