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

org.checkerframework.checker.calledmethods.qual.EnsuresCalledMethods Maven / Gradle / Ivy

Go to download

The Checker Framework enhances Java's type system to make it more powerful and useful. This lets software developers detect and prevent errors in their Java programs. The Checker Framework includes compiler plug-ins ("checkers") that find bugs or verify their absence. It also permits you to write your own compiler plug-ins.

There is a newer version: 3.44.0
Show newest version
package org.checkerframework.checker.calledmethods.qual;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
import org.checkerframework.framework.qual.PostconditionAnnotation;
import org.checkerframework.framework.qual.QualifierArgument;

/**
 * Indicates that the method, if it terminates successfully, always invokes the given methods on the
 * given expressions.
 *
 * 

Consider the following method: * *

 * @EnsuresCalledMethods(value = "#1", methods = "m")
 * public void callM(T t) { ... }
 * 
* *

This method guarantees that {@code t.m()} is always called before the method returns. * * @checker_framework.manual #called-methods-checker Called Methods Checker */ @PostconditionAnnotation(qualifier = CalledMethods.class) @Target({ElementType.METHOD, ElementType.CONSTRUCTOR}) public @interface EnsuresCalledMethods { /** * The Java expressions to which the qualifier applies. * * @return the Java expressions to which the qualifier applies * @see org.checkerframework.framework.qual.EnsuresQualifier */ // Postconditions must use "value" as the name (conditional postconditions use "expression"). String[] value(); /** * The methods guaranteed to be invoked on the expressions. * * @return the methods guaranteed to be invoked on the expressions */ @QualifierArgument("value") String[] methods(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy