se.bjurr.jmib.anotations.Default Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-method-invocation-builder-annotations Show documentation
Show all versions of java-method-invocation-builder-annotations Show documentation
Generates builders for invoking methods on instantiated objects.
The newest version!
package se.bjurr.jmib.anotations;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.CLASS;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(CLASS)
@Target({PARAMETER})
public @interface Default {
String value();
}