pl.touk.nussknacker.engine.api.OutputVariableName Maven / Gradle / Ivy
package pl.touk.nussknacker.engine.api;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* In parameter added by this annotation will be injected variable name
* TODO: in some situations like ending custom node we may want to make the annotated parameter optional
*/
@Target(ElementType.PARAMETER)
@Retention(RetentionPolicy.RUNTIME)
public @interface OutputVariableName {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy