com.redhat.ceylon.compiler.java.metadata.Defaulted Maven / Gradle / Ivy
package com.redhat.ceylon.compiler.java.metadata;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation applied to a Java method or constructor parameter to indicate
* that it is a defaulted parameter, which need not have a formal argument
* at a call site.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
public @interface Defaulted {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy