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