io.rouz.flo.gen.GenerateTaskBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flo-api-generator Show documentation
Show all versions of flo-api-generator Show documentation
Internal module containing an annotation processor for generating the TaskBuilder API
The newest version!
package io.rouz.flo.gen;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation for generating the task builder API. Processed by {@link ApiGeneratorProcessor}.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface GenerateTaskBuilder {
int upTo();
boolean scala() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy