org.checkerframework.checker.mustcall.qual.NotOwning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of checker-qual Show documentation
Show all versions of checker-qual Show documentation
checker-qual contains annotations (type qualifiers) that a programmer
writes to specify Java code for type-checking by the Checker Framework.
The newest version!
package org.checkerframework.checker.mustcall.qual;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation indicating that ownership should not be transferred to the annotated parameter, field,
* or method's call sites, for the purposes of Must Call checking. For a full description of the
* semantics, see the documentation of {@link Owning}.
*
* Formal parameters and fields are {@link NotOwning} by default. Method return types are
* {@code @Owning} by default. Constructor results are always {@code @Owning}.
*
*
When the {@code -AnoLightweightOwnership} command-line argument is passed to the checker, this
* annotation and {@link Owning} are ignored.
*
* @checker_framework.manual #resource-leak-checker Resource Leak Checker
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD})
public @interface NotOwning {}