ru.yandex.qatools.fsm.annotations.AfterTransit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yatomata Show documentation
Show all versions of yatomata Show documentation
Yet another finite state machine implementation
package ru.yandex.qatools.fsm.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
/**
* Marks method as post-transition handler that is executed right after transition. See {@link OnTransit} for method
* signature examples.
*
* @author Ilya Sadykov
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({METHOD})
public @interface AfterTransit {
}