marcel.lang.compile.IntDefaultValue Maven / Gradle / Ivy
package marcel.lang.compile;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.PARAMETER;
@Retention(RetentionPolicy.RUNTIME)
@Target(value={PARAMETER})
public @interface IntDefaultValue {
int value() default 0;
}