View Javadoc

1   package cz.cuni.amis.pogamut.sposh;
2   
3   import java.lang.annotation.ElementType;
4   import java.lang.annotation.Retention;
5   import java.lang.annotation.RetentionPolicy;
6   import java.lang.annotation.Target;
7   
8   /**
9    * Marker that will annotate actions that should be made available for SPOSH engine
10   * in the {@link JavaBehaviour behaviour} class.
11   * @author Honza
12   */
13  @Retention(RetentionPolicy.RUNTIME)
14  @Target(ElementType.METHOD)
15  public @interface SPOSHAction {
16  }