org.jqassistant.plugin.c4.model.ContainerDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqassistant-c4-plugin Show documentation
Show all versions of jqassistant-c4-plugin Show documentation
PlantUML C4 Plugin for jQAssistant.
The newest version!
package org.jqassistant.plugin.c4.model;
import com.buschmais.xo.neo4j.api.annotation.Label;
import org.jqassistant.plugin.c4.report.C4Language;
/**
* Descriptor for a C4 Container.
*
* @author Stephan Pirnbaum
*/
@C4Language(C4Language.C4LanguageElement.Container)
@Label("Container")
public interface ContainerDescriptor extends BuildingBlockDescriptor, C4Descriptor {
}