(--------)
Of course, thanks for your answer
I was thinking using a foward slash would be pretty logical, as Business use cases and actors are crossed, so for Business use cases, maybe (inspired by https://plantuml.com/en/use-case-diagram):
@startuml (First Business usecase)/ (Another Business usecase)/ as (BUC2) usecase/ BUC3 usecase/ (Last\nBusiness usecase) as BUC4 @enduml
As for Business actors:
@startuml :First Actor:/ :Another\nactor:/ as Man2 actor/ Woman3 actor/ :Last actor: as Person1 @enduml
---
Or adding a B instead of a forward slash maybe? But I personally find it less visual and logical:
@startuml (First Business usecase)B (Another Business usecase)B as (BUC2) usecaseB BUC3 usecaseB (Last\nBusiness usecase) as BUC4 @enduml
@startuml :First Actor:B :Another\nactor:B as Man2 actorB Woman3 actorB :Last actor: as Person1 @enduml
What do you think?
Thanks
Your syntax makes sense.
So with last beta http://beta.plantuml.net/plantuml.jar you can now have :
@startuml (First Business usecase)/ (Another Business usecase)/ as (BUC2) usecase/ BUC3 usecase/ (Last\nBusiness usecase) as BUC4 :First Actor:/ :Another\nactor:/ as Man2 actor/ Woman3 actor/ :Last actor: as Person1 @enduml
This is not final :
Hello PlantUML team,
To be consistent (with actor definition [see on deployment-diagram]), could you also handle:
@startuml :First Actor:/ "Person2" "Person3"/ @enduml
[See on PlantUML online server]
and also the awesome actorStyle management:
@startuml skinparam actorStyle awesome "Use the application" as (Use)/ :User:/ --> (Use) @enduml
and 2 other examples for the fun :
@startuml "Use the application" as (Use)/ :User: --> (Use) @enduml
And if we reverse the lines, we observe:
@startuml :User: --> (Use) "Use the application" as (Use)/ @enduml
For helping & testing,Regards,Th.
Another observation:
Like on:
@startuml usecase UC1 as "You can use several lines to define your usecase." usecase UC2 [You can use several lines to define your usecase. ] @enduml
[See on PlantUML server]
If we test after
usecase/
or afer
UC1/ UC2/
We observe defect:
Thanks for your support,Regards,Th