org.jqassistant.plugin.c4.data.Component 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 Component.
*
* @author Stephan Pirnbaum
*/
@SuperBuilder
public class Component extends AbstractBuildingBlock {
@Override
String getPrimaryElementTypeLabel() {
return "Component";
}
}