All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.credibledoc.substitution.doc.plantuml.Participant Maven / Gradle / Ivy

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy