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

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

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

import java.lang.annotation.*;

/**
 * A type-level annotation that can be used to add a name-value property to the model element represented by the type.
 */
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Repeatable(Properties.class)
public @interface Property {

    String name();
    String value();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy