001package io.avaje.inject.spi;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008/**
009 * Marks source code that has been generated.
010 */
011@Target(ElementType.TYPE)
012@Retention(RetentionPolicy.CLASS)
013public @interface Generated {
014
015  /**
016   * The name of the generator used to generate this source.
017   */
018  String value();
019}