1 // BSD License (http://www.galagosearch.org/license)
2 package org.galagosearch.tupleflow;
3
4 import java.lang.annotation.Documented;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7
8 /***
9 *
10 * @author trevor
11 */
12 @Documented
13 @Retention(RetentionPolicy.RUNTIME)
14 public @interface InputClass {
15 String className() default "java.lang.Object";
16
17 String[] order() default {};
18 }