com.hlag.tools.commvis.analyzer.annotation.VisualizeSnsProducers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Library containing the API to enhance the analyzer by user defined components.
package com.hlag.tools.commvis.analyzer.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Used to group multiple {@link VisualizeSnsProducer} annotations on one element.
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface VisualizeSnsProducers {
/**
* @return all grouped {@link VisualizeSnsProducer} annotations
*/
VisualizeSnsProducer[] value();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy