uk.autores.repeat.RepeatableInputStreams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annotations Show documentation
Show all versions of annotations Show documentation
Annotation driven library for handling embedded resources
// Copyright 2023 https://github.com/autores-uk/autores/blob/main/LICENSE.txt
// SPDX-License-Identifier: Apache-2.0
package uk.autores.repeat;
import uk.autores.InputStreams;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Allows {@link InputStreams} to be used multiple times on a package or class.
* API consumers do not need to reference this type - it is only used by the compiler and annotation processor.
*
* @see java.lang.annotation.Repeatable
*/
@Target({ElementType.PACKAGE, ElementType.TYPE})
@Retention(RetentionPolicy.SOURCE)
public @interface RepeatableInputStreams {
/**
* Repeating elements.
*
* @return the individual resource annotations
*/
InputStreams[] value();
}