#parse("main/Header.vm") package com.nativelibs4java.opencl; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Tagging annotation to indicate the name of an OpenCL information in the OpenCL specifications. * @author ochafik */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface InfoName { String value(); }