org.jqassistant.plugin.c4.data.Container 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.data;
import lombok.experimental.SuperBuilder;
/**
* Representation of a C4 Container.
*
* @author Stephan Pirnbaum
*/
@SuperBuilder
public class Container extends AbstractBuildingBlock {
@Override
String getPrimaryElementTypeLabel() {
return "Container";
}
}