View Javadoc

1   /**
2    * - Digitalis Internal Framework v2.0 - (C) 2007, Digitalis Informatica.
3    * Distribuicao e Gestao de Informatica, Lda. Estrada de Paco de Arcos num.9 -
4    * Piso -1 2780-666 Paco de Arcos Telefone: (351) 21 4408990 Fax: (351) 21
5    * 4408999 http://www.digitalis.pt
6    */
7   package pt.digitalis.dif.dem.annotations;
8   
9   import java.lang.annotation.ElementType;
10  import java.lang.annotation.Retention;
11  import java.lang.annotation.RetentionPolicy;
12  import java.lang.annotation.Target;
13  
14  import pt.digitalis.dif.dem.annotations.metaannotations.Primary;
15  
16  /**
17   * This annotation is used to inject an application on a stage. It
18   * can be used on any POJO annotated with <code>@StageDefinition</code>.
19   * @author Rodrigo Gonçalves <a
20   *         href="mailto:rgoncalves@digitalis.pt">rgoncalves@digitalis.pt</a>
21   * @created 2007/05/11
22   */
23  @Target(ElementType.FIELD)
24  @Retention(RetentionPolicy.RUNTIME)
25  @Primary
26  public @interface Application {
27  	
28  }