package org.jboss.windup.graph; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Contains multiple {@link Indexed} annotations. * * @author <a href="mailto:jesse.sightler@gmail.com">Jesse Sightler</a> */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Indexes { Indexed[] value(); }