live.document.mavenplugin.style.MindMapConstants Maven / Gradle / Ivy
package live.document.mavenplugin.style;
public class MindMapConstants {
public static final String plantUmlPrefix = "```plantuml\n" +
"@startmindmap\n" +
"skinparam svgLinkTarget _blank\n".replace("\n", System.lineSeparator());
public static final String plantUmlSuffix = "@endmindmap\n```".replace("\n", System.lineSeparator());
public static final String sampleDiagram = "-- Sample Daigram\n" +
"--- Resource Layer Object <>\n" +
"--- XXController <>\n" +
"--- XXDisposal <>\n" +
"--- Application Layer Object <>\n" +
"--- ApplicationService <>\n" +
"--- ACL Layer Object <>\n" +
"--- ACL.doSomething <>\n" +
"--- Domain Layer Object <>\n" +
"--- DomainService <>\n" +
"--- Entity <>\n" +
"--- Infrastructure Layer Object <>\n" +
"--- Repository <>\n" +
"--- DB Table/Procedure/Function <>\n" +
"--- 3 manual transactions \n" +
"--- 这里是 [统一语言词汇] 用中括号\n" +
"--- Link(1.1) 链接到1.1 <>\n".replace("\n", System.lineSeparator());
public static final String style = "\n".replace("\n", System.lineSeparator());
}