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

fr.lteconsulting.UseBuilderGenerator Maven / Gradle / Ivy

The newest version!
package fr.lteconsulting;

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

/**
 * Ask for automatic generation of a builder for a constructor
 */
@Retention( RetentionPolicy.SOURCE )
@Target( { ElementType.METHOD, ElementType.CONSTRUCTOR } )
public @interface UseBuilderGenerator
{
	String builderName() default "";

	String builderPackage() default "";

	String finalMethodName() default "";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy