plantuml / backlog

Contains all issues for plantuml that are not currently working-in-progress
0 stars 0 forks source link

Add support for independent set/get visibility/access of fields/properties in class diagrams #15

Open mwhincup opened 6 years ago

mwhincup commented 6 years ago

Matlab allows you to independently define the get access (visibility) and the set access of a property. Using the example from the plantuml documentation, one could specify, e.g. public get access and protected set access for field1 and protected get access and private set access for field2 thus:

@startuml

class Dummy {
 +#field1
 #-field2
 ~method1()
 +method2()
}

@enduml
arnaudroques commented 1 year ago

I'm not sure to understand the request, here.