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

xapi.annotation.process.OnProcessStart Maven / Gradle / Ivy

package xapi.annotation.process;


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

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

/**
 * A method annotation used to tell the X_Process macro that
 * you wish the method to be called when the process begins.
 *
 * @author "James X. Nelson ([email protected])"
 *
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(METHOD)
public @interface OnProcessStart {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy