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

org.checkerframework.checker.mustcall.qual.NotOwning Maven / Gradle / Ivy

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 (when this is written on a method) return type, for the purposes of Must Call checking.
 *
 * 

Parameters and fields are treated as if they have this annotation by default unless they have * {@link Owning}. * *

When the -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 {}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy