blob: 0b0cd24cfea97e18595fad1d2dcfc2ad8ed534be [file] [log] [blame]
package org.checkerframework.framework.testchecker.util;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.checkerframework.framework.qual.InheritedAnnotation;
import org.checkerframework.framework.qual.PostconditionAnnotation;
/**
* A postcondition annotation to indicate that a method ensures certain expressions to be {@link
* Odd}.
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
@PostconditionAnnotation(qualifier = Odd.class)
@InheritedAnnotation
public @interface EnsuresOdd {
String[] value();
}