// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.document; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; /** * Classes generated by vespa-documentgen-plugin are annotated with this. It * differs from javax.annotation.Generated in that the retention * policy is Runtime. * * @author Vegard Havdal */ @Retention(RetentionPolicy.RUNTIME) public @interface Generated { }