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

org.checkerframework.common.initializedfields.qual.PolyInitializedFields Maven / Gradle / Ivy

Go to download

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.common.initializedfields.qual;

import org.checkerframework.framework.qual.PolymorphicQualifier;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

/**
 * Polymorphic qualifier for the Initialized Fields type system.
 *
 * @checker_framework.manual #initialized-fields-checker Initialized Fields Checker
 */
@PolymorphicQualifier(InitializedFields.class)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
public @interface PolyInitializedFields {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy