What is the error in this class diagram?

0 votes
asked Feb 10, 2017 in Bug by anonymous
@startuml
class /IDV0/CO_GENERIC_XMLTICKET_SER { 
}
CL_PROXY_CLIENT <|-- /IDV0/CO_GENERIC_XMLTICKET_SER
@enduml

2 Answers

0 votes
answered Feb 10, 2017 by plantuml (298,440 points)
 
Best answer

It's very unusual to put slashes in class name, so some features may react strangely.

In you case, you case use quotes:

@startuml
class /IDV0/CO_GENERIC_XMLTICKET_SER {
}
CL_PROXY_CLIENT <|-- "/IDV0/CO_GENERIC_XMLTICKET_SER"
@enduml

Tell us if you find other issues!

Thanks

0 votes
answered Feb 10, 2017 by Serge Wenger Work (16,630 points)

Or

@startuml

class "/IDV0/CO_GENERIC_XMLTICKET_SER" as CGX { 
}
CL_PROXY_CLIENT <|-- CGX
@enduml
...