blob: 7e78009279e2bcba451f57a6fc9b03586e9516cd [file] [log] [blame]
package org.checkerframework.checker.fenum.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;
/**
* AwtCursorType.
*
* @checker_framework.manual #fenum-checker Fake Enum Checker
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE_USE, ElementType.TYPE_PARAMETER})
@SubtypeOf(FenumTop.class)
public @interface AwtCursorType {}