org.jqassistant.plugin.c4.data.C4Diagram 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.Getter;
import lombok.RequiredArgsConstructor;
import java.util.List;
/**
* Representation of a C4 diagram.
*
* @author Stephan Pirnbaum
*/
@RequiredArgsConstructor
@Getter
public class C4Diagram {
private final String name;
private final List elements;
private final List relations;
}