View Javadoc

1   package org.lsst.ccs.bus.trending;
2   
3   import java.lang.annotation.Documented;
4   import java.lang.annotation.ElementType;
5   import java.lang.annotation.Retention;
6   import java.lang.annotation.RetentionPolicy;
7   import java.lang.annotation.Target;
8   
9   /**
10   * a Class that should be analyzed for Trending data
11   * @author bamade
12   */
13  // Date: 08/04/13
14  
15  @Documented
16  @Target(ElementType.TYPE)
17  @Retention(RetentionPolicy.RUNTIME)
18  public @interface Trendable {
19  }