blob: 9d1e72e2209f7d62e99b00db8950ddcbdb4dc6a0 [file] [log] [blame]
package org.checkerframework.checker.signature.qual;
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.SubtypeOf;
/**
* A primitive type. One of: boolean, byte, char, double, float, int, long, short.
*
* @checker_framework.manual #signature-checker Signature Checker
*/
@SubtypeOf({IdentifierOrPrimitiveType.class, CanonicalName.class})
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
public @interface PrimitiveType {}