SourceType.java 383 B

12345678910111213141516
  1. package kawa;
  2. import java.lang.annotation.*;
  3. import static java.lang.annotation.ElementType.*;
  4. @Retention(RetentionPolicy.RUNTIME)
  5. @java.lang.annotation.Target(value={METHOD})
  6. /** Used to encode language-specific type information for variables.
  7. * The value is a string as returned by {@link gnu.epr.Language#encodeType}.
  8. */
  9. public @interface SourceType {
  10. String value();
  11. }