com.hadii.stiff.text.PlantUMLFriendlyText Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stiff-lib Show documentation
Show all versions of stiff-lib Show documentation
stiff-lib is a java library for generating stiff diagrams.
The newest version!
package com.hadii.stiff.text;
/**
* Represents text that can be displayed in a PlantUML diagram.
*/
final class PlantUMLFriendlyText implements Text {
private final Text text;
PlantUMLFriendlyText(Text text) {
this.text = text;
}
@Override
public String value() {
return this.text.value().replaceAll("\\(", "[").replaceAll("\\)", "]");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy