filebot/source/net/sourceforge/filebot/format/Define.java

20 lines
350 B
Java

package net.sourceforge.filebot.format;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(RUNTIME)
@Target(METHOD)
public @interface Define {
String[] value();
static final String undefined = "";
}