Convert a character
to a plantuml
object.
This can be plotted.
# S3 method for list
as.plantuml(x, complete = FALSE, nm = NULL, ...)
character sting containing plantuml code.
if TRUE
, enclose the plantuml statements in "@startuml"
and "@enduml"
normally not for user - TODO I have to check... embarassing
additional arguments - not used here
object of class plantuml
which can be plotted.
if (FALSE) {
x <- '
@startuml --> "First Activity" -->[You can put also labels] "Second Activity"
-->
@enduml
'
x <- as.plantuml( x )
plot( x ) }