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

com.structurizr.annotation.UsesComponent Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
package com.structurizr.annotation;

import java.lang.annotation.*;

/**
 * A field-level annotation that can be used to supplement the existing relationship
 * (i.e. add a description and/or technology) between two components.
 */
@Documented
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface UsesComponent {

    String description();
    String technology() default "";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy