mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-22 04:55:10 +00:00
Merge pull request #173 from qwazer/nwdiag
Add ability to use any shape from USymbol in nwdiag elements.
This commit is contained in:
commit
10a4c323b9
@ -109,11 +109,9 @@ public class DiagElement {
|
||||
}
|
||||
|
||||
public final void setShape(String shapeName) {
|
||||
if ("database".equalsIgnoreCase(shapeName)) {
|
||||
this.shape = USymbol.DATABASE;
|
||||
}
|
||||
if ("node".equalsIgnoreCase(shapeName)) {
|
||||
this.shape = USymbol.NODE;
|
||||
USymbol shapeFromString = USymbol.getFromString(shapeName);
|
||||
if (shapeFromString!=null){
|
||||
this.shape = shapeFromString;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user