com.credibledoc.substitution.doc.plantuml.Participant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of credible-doc-generator Show documentation
Show all versions of credible-doc-generator Show documentation
This module generates documentation
for the https://github.com/credibledoc/credible-doc repository projects.
See description on the https://github.com/credibledoc/credible-doc page.
package com.credibledoc.substitution.doc.plantuml;
import com.credibledoc.generator.CredibleDocGeneratorMain;
import com.credibledoc.substitution.core.resource.ResourceService;
/**
* PlantUML participants, for example {@link #SUBSTITUTION_DOC}.
* @author Kyrylo Semenko
*/
public enum Participant {
/**
* The substitution module.
*/
SUBSTITUTION_CORE("\"" + ResourceService.SUBSTITUTION_CORE_MODULE_NAME + "\""),
/**
* This module.
*/
SUBSTITUTION_DOC("\"" + CredibleDocGeneratorMain.CREDIBLE_DOC_GENERATOR + "\"");
/** A name in a diagram */
private final String uml;
/**
* @param uml see {@link #uml}
*/
Participant(String uml) {
this.uml = uml;
}
/**
* @return The {@link Participant#uml} field
*/
public String getUml() {
return uml;
}
}