All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zhou6ang.statemachine.annotation.Action Maven / Gradle / Ivy

/**
 * 
 */
package com.github.zhou6ang.statemachine.annotation;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Repeatable;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Documented
@Retention(RUNTIME)
@Target(METHOD)

/**
 * @author ganzhou
 *
 */
@Repeatable(Actions.class)
public @interface Action {
	String name() default "";
	String from() ;
	String to();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy