View Javadoc

1   /*
2    * ComputedStatistics
3    * 
4    * September 20, 2007
5    * 
6    * BSD License (http://www.galagosearch.org/license)
7    */
8   package org.galagosearch.core.retrieval.structured;
9   
10  import java.lang.annotation.Documented;
11  import java.lang.annotation.Retention;
12  import java.lang.annotation.RetentionPolicy;
13  
14  /***
15   *
16   * @author trevor
17   */
18  @Documented
19  @Retention(RetentionPolicy.RUNTIME)
20  public @interface RequiredStatistics {
21      public String[] statistics() default {};
22  }