cz.jmare.mexpr.util.InnerVariable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mexpr-api Show documentation
Show all versions of mexpr-api Show documentation
API with very basic interfaces or annotations
The newest version!
package cz.jmare.mexpr.util;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation to mark an inner variable. Such variable has own scope inside of function and function usually itself changes such variable
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface InnerVariable {
}