All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hlag.tools.commvis.analyzer.annotation.VisualizeSnsProducers Maven / Gradle / Ivy

Go to download

Library containing the API to enhance the analyzer by user defined components.

There is a newer version: 2.9.80
Show newest version
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